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

29 lines
562 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, passlib
}:
buildPythonPackage rec {
pname = "pg8000";
2019-10-16 11:43:11 +02:00
version = "1.13.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:11 +02:00
sha256 = "eebcb4176a7e407987e525a07454882f611985e0becb2b73f76efb93bbdc0aab";
};
propagatedBuildInputs = [ passlib ];
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; [ domenkozar ];
platforms = platforms.unix;
};
}