Merge pull request #52759 from Izorkin/pythonPackages.pg8000

pythonPackages.pg8000: fix build
This commit is contained in:
Maximilian Bosch 2018-12-24 10:31:40 +01:00 committed by GitHub
commit 0e19695013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytz , pytz
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,10 +14,10 @@ buildPythonPackage rec {
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de"; sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
}; };
propagatedBuildInputs = [ pytz ]; propagatedBuildInputs = [ pytz six ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/realazthat/aiopg8000; homepage = https://github.com/mfenniak/pg8000;
description = "PostgreSQL interface library, for asyncio"; description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ]; maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.linux; platforms = platforms.linux;