Skip to content

Commit

Permalink
Merge pull request NixOS#145625 from fabaff/bump-pg8000
Browse files Browse the repository at this point in the history
python3Packages.pg8000: 1.22.0 -> 1.22.1
  • Loading branch information
fabaff authored Nov 12, 2021
2 parents 8df0005 + be90e85 commit 3f915b4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/pg8000/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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";
Expand Down

0 comments on commit 3f915b4

Please sign in to comment.