3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pg8000/default.nix

27 lines
544 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
2018-12-24 09:05:45 +00:00
, six
}:
buildPythonPackage rec {
pname = "pg8000";
2018-11-04 10:35:09 +00:00
version = "1.12.3";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:09 +00:00
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
};
2018-12-24 09:05:45 +00:00
propagatedBuildInputs = [ pytz six ];
meta = with stdenv.lib; {
2018-12-24 09:05:45 +00:00
homepage = https://github.com/mfenniak/pg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.linux;
};
}