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