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