Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 23 lines 562 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4}: 5 6buildPythonPackage rec { 7 pname = "jsonrpclib-pelix"; 8 version = "0.4.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1pimyq95w99ik5av96j0n9i6n12mr9kk0y28jnrq0555d7hmii8r"; 13 }; 14 15 doCheck = false; # test_suite="tests" in setup.py but no tests in pypi. 16 17 meta = with lib; { 18 description = "JSON RPC client library - Pelix compatible fork"; 19 homepage = https://pypi.python.org/pypi/jsonrpclib-pelix/; 20 license = lib.licenses.asl20; 21 maintainers = with maintainers; [ moredread ]; 22 }; 23}