1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pytz
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "pg8000";
10 version = "1.13.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "2208c7aaffe8d61f5c4ccbefeb74ba033003899e64aee37c0eb98aadae8b9c6b";
15 };
16
17 propagatedBuildInputs = [ pytz six ];
18
19 meta = with stdenv.lib; {
20 homepage = https://github.com/tlocke/pg8000;
21 description = "PostgreSQL interface library, for asyncio";
22 maintainers = with maintainers; [ garbas domenkozar ];
23 platforms = platforms.unix;
24 };
25
26}