python3Packages.pg8000: 1.22.0 -> 1.22.1

This commit is contained in:
Fabian Affolter 2021-11-12 13:21:50 +01:00
parent f161fe9cb1
commit be90e854f9

View File

@ -8,12 +8,14 @@
buildPythonPackage rec {
pname = "pg8000";
version = "1.22.0";
version = "1.22.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "c5172252fc92142ec104cd5e7231be4580a1a0a814403707bafbf7bb8383a29a";
sha256 = "sha256-/WmtWvJ4HllgjLP02WayNNlhxi8JPt0xlKxF32W40dQ=";
};
propagatedBuildInputs = [
@ -23,7 +25,10 @@ buildPythonPackage rec {
# Tests require a running PostgreSQL instance
doCheck = false;
pythonImportsCheck = [ "pg8000" ];
pythonImportsCheck = [
"pg8000"
];
meta = with lib; {
description = "Python driver for PostgreSQL";