Merge pull request #114216 from fabaff/bump-pg8000

python3Packages.pg8000: 1.16.6 -> 1.17.0
This commit is contained in:
Fabian Affolter 2021-03-01 23:12:47 +01:00 committed by GitHub
commit da69061d07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,22 +8,25 @@
buildPythonPackage rec {
pname = "pg8000";
version = "1.16.6";
version = "1.17.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "8fc1e6a62ccb7c9830f1e7e9288e2d20eaf373cc8875b5c55b7d5d9b7717be91";
sha256 = "sha256-FBmMWv6yiRBuQO5uXkwFKcU2mTn2yliKAos3GnX+IN0=";
};
propagatedBuildInputs = [ passlib scramp ];
# Tests require a running PostgreSQL instance
doCheck = false;
pythonImportsCheck = [ "pg8000" ];
meta = with lib; {
description = "Python driver for PostgreSQL";
homepage = "https://github.com/tlocke/pg8000";
description = "PostgreSQL interface library, for asyncio";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ domenkozar ];
platforms = platforms.unix;
};
}