nixpkgs/pkgs/development/python-modules/pg8000/default.nix

27 lines
541 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
2018-12-24 10:05:45 +01:00
, six
}:
buildPythonPackage rec {
pname = "pg8000";
2019-02-14 08:37:23 +01:00
version = "1.13.1";
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:23 +01:00
sha256 = "2208c7aaffe8d61f5c4ccbefeb74ba033003899e64aee37c0eb98aadae8b9c6b";
};
2018-12-24 10:05:45 +01:00
propagatedBuildInputs = [ pytz six ];
meta = with stdenv.lib; {
2019-03-02 10:37:31 +01:00
homepage = https://github.com/tlocke/pg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.unix;
};
}