Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi 2, aiohttp, jsonrpc-base }: 3 4buildPythonPackage rec { 5 pname = "jsonrpc-async"; 6 version = "1.1.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "383f331e28cd8f6e3fa86f3e7052efa541b7ae8bf328a4e692aa045cfc0ecf25"; 11 }; 12 13 propagatedBuildInputs = [ aiohttp jsonrpc-base ]; 14 15 meta = with stdenv.lib; { 16 description = "A JSON-RPC client library for asyncio"; 17 homepage = "https://github.com/armills/jsonrpc-async"; 18 license = licenses.bsd3; 19 maintainers = with maintainers; [ peterhoeg ]; 20 }; 21}