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

27 lines
543 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
2018-12-24 10:05:45 +01:00
, six
}:
buildPythonPackage rec {
pname = "pg8000";
2019-01-17 16:13:04 +01:00
version = "1.12.4";
src = fetchPypi {
inherit pname version;
2019-01-17 16:13:04 +01:00
sha256 = "903a19158e9efda326908bb4b70a71d31f640b4326576774433ab11fd4e46f39";
};
2018-12-24 10:05:45 +01:00
propagatedBuildInputs = [ pytz six ];
meta = with stdenv.lib; {
2018-12-24 10:05:45 +01:00
homepage = https://github.com/mfenniak/pg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.unix;
};
}