python310Packages.pure-cdb: 3.1.1 -> 4.0.0

This commit is contained in:
R. Ryantm 2022-09-08 14:03:44 +00:00 committed by Jonathan Ringer
parent ea7e7b5fdc
commit a1e3d1f393

View File

@ -2,15 +2,15 @@
buildPythonPackage rec {
pname = "pure-cdb";
version = "3.1.1";
version = "4.0.0";
disabled = pythonOlder "3.4";
# Archive on pypi has no tests.
src = fetchFromGitHub {
owner = "bbayles";
repo = "python-pure-cdb";
rev = "v${version}";
hash = "sha256-/FAe4NkY5unt83BOnJ3QqBJFQCPdQnbMVl1fSZ511Fc=";
rev = "refs/tags/v${version}";
hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
};
checkInputs = [ flake8 ];