pythonPackages.pg8000: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-25 21:25:00 -04:00
committed by Frederik Rietdijk
parent 6b3f38b185
commit 9ec90782a7
2 changed files with 27 additions and 16 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
}:
buildPythonPackage rec {
pname = "pg8000";
version = "1.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "188658db63c2ca931ae1bf0167b34efaac0ecc743b707f0118cc4b87e90ce488";
};
propagatedBuildInputs = [ pytz ];
meta = with stdenv.lib; {
homepage = https://github.com/realazthat/aiopg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.linux;
};
}