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