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