Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 518 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "jsonrpc-base"; 5 version = "1.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7bda99589b4566f5027c2aeae122f409d8ccf4c811b278b8cfb616903871efb2"; 10 }; 11 12 propagatedBuildInputs = [ ]; 13 14 meta = with stdenv.lib; { 15 description = "A JSON-RPC client library base interface"; 16 homepage = "https://github.com/armills/jsonrpc-base"; 17 license = licenses.bsd3; 18 maintainers = with maintainers; [ peterhoeg ]; 19 }; 20}