Skip to content

Commit

Permalink
Merge pull request #52759 from Izorkin/pythonPackages.pg8000
Browse files Browse the repository at this point in the history
pythonPackages.pg8000: fix build
  • Loading branch information
Ma27 committed Dec 24, 2018
2 parents 71491d0 + 5948a5a commit 0e19695
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/pg8000/default.nix
Expand Up @@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pytz
, six
}:

buildPythonPackage rec {
Expand All @@ -13,10 +14,10 @@ buildPythonPackage rec {
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
};

propagatedBuildInputs = [ pytz ];
propagatedBuildInputs = [ pytz six ];

meta = with stdenv.lib; {
homepage = https://github.com/realazthat/aiopg8000;
homepage = https://github.com/mfenniak/pg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.linux;
Expand Down

0 comments on commit 0e19695

Please sign in to comment.