2018-10-26 02:25:00 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-04-27 06:47:38 +01:00
|
|
|
, isPy3k
|
|
|
|
, passlib
|
2018-10-26 02:25:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pg8000";
|
2019-02-14 07:37:23 +00:00
|
|
|
version = "1.13.1";
|
2018-10-26 02:25:00 +01:00
|
|
|
|
2019-04-27 06:47:38 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-10-26 02:25:00 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:23 +00:00
|
|
|
sha256 = "2208c7aaffe8d61f5c4ccbefeb74ba033003899e64aee37c0eb98aadae8b9c6b";
|
2018-10-26 02:25:00 +01:00
|
|
|
};
|
|
|
|
|
2019-04-27 06:47:38 +01:00
|
|
|
propagatedBuildInputs = [ passlib ];
|
2018-10-26 02:25:00 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-03-02 09:37:31 +00:00
|
|
|
homepage = https://github.com/tlocke/pg8000;
|
2018-10-26 02:25:00 +01:00
|
|
|
description = "PostgreSQL interface library, for asyncio";
|
|
|
|
maintainers = with maintainers; [ garbas domenkozar ];
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2018-10-26 02:25:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|