python3Packages.pg8000: 1.16.6 -> 1.17.0

This commit is contained in:
Fabian Affolter 2021-02-24 09:36:30 +01:00
parent b1efbc6aa3
commit 8fbf7477e6

View File

@ -8,22 +8,24 @@
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; {
homepage = "https://github.com/tlocke/pg8000";
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ domenkozar ];
platforms = platforms.unix;
};
}