pythonPackages.pg8000: fix build

This commit is contained in:
Izorkin 2018-12-24 12:05:45 +03:00
parent 98436ba55a
commit 5948a5a3b0

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pytz
, six
}:
buildPythonPackage rec {
@ -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;