Merge pull request #114216 from fabaff/bump-pg8000
python3Packages.pg8000: 1.16.6 -> 1.17.0
This commit is contained in:
commit
da69061d07
@ -8,22 +8,25 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pg8000";
|
pname = "pg8000";
|
||||||
version = "1.16.6";
|
version = "1.17.0";
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "8fc1e6a62ccb7c9830f1e7e9288e2d20eaf373cc8875b5c55b7d5d9b7717be91";
|
sha256 = "sha256-FBmMWv6yiRBuQO5uXkwFKcU2mTn2yliKAos3GnX+IN0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ passlib scramp ];
|
propagatedBuildInputs = [ passlib scramp ];
|
||||||
|
|
||||||
|
# Tests require a running PostgreSQL instance
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pg8000" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Python driver for PostgreSQL";
|
||||||
homepage = "https://github.com/tlocke/pg8000";
|
homepage = "https://github.com/tlocke/pg8000";
|
||||||
description = "PostgreSQL interface library, for asyncio";
|
license = with licenses; [ bsd3 ];
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
maintainers = with maintainers; [ domenkozar ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user