Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 29 lines 581 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, passlib 6}: 7 8buildPythonPackage rec { 9 pname = "pg8000"; 10 version = "1.13.2"; 11 12 disabled = !isPy3k; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "eebcb4176a7e407987e525a07454882f611985e0becb2b73f76efb93bbdc0aab"; 17 }; 18 19 propagatedBuildInputs = [ passlib ]; 20 21 meta = with stdenv.lib; { 22 homepage = https://github.com/tlocke/pg8000; 23 description = "PostgreSQL interface library, for asyncio"; 24 maintainers = with maintainers; [ domenkozar ]; 25 platforms = platforms.unix; 26 broken = true; 27 }; 28 29}