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";
|
2018-11-04 10:35:09 +00:00
|
|
|
version = "1.12.3";
|
2018-10-26 02:25:00 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:09 +00:00
|
|
|
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|