Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, fetchPypi 3, lib 4}: 5 6buildPythonPackage rec { 7 name = "${pname}-${version}"; 8 pname = "jsonrpclib-pelix"; 9 version = "0.3.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl"; 14 }; 15 16 meta = with lib; { 17 description = "JSON RPC client library - Pelix compatible fork"; 18 homepage = https://pypi.python.org/pypi/jsonrpclib-pelix/; 19 license = lib.licenses.asl20; 20 maintainers = with maintainers; [ moredread ]; 21 }; 22}