Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 28 lines 564 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 homepage = "https://github.com/tlocke/pg8000"; 23 description = "PostgreSQL interface library, for asyncio"; 24 maintainers = with maintainers; [ domenkozar ]; 25 platforms = platforms.unix; 26 }; 27 28}