From 5948a5a3b0e7b67b3d1b8907dc1e883a42098bc6 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Mon, 24 Dec 2018 12:05:45 +0300 Subject: [PATCH] pythonPackages.pg8000: fix build --- pkgs/development/python-modules/pg8000/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 175e64b8d72d..f5828bebbb37 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -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;