Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 503 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, plumbum 6}: 7 8buildPythonPackage rec { 9 pname = "rpyc"; 10 version = "4.0.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "a0d87cbad152f25e3702a03cb7fd67f6b10c87680a60ec3aea8dca5a56307c10"; 15 }; 16 17 propagatedBuildInputs = [ nose plumbum ]; 18 19 meta = with stdenv.lib; { 20 description = "Remote Python Call (RPyC), a transparent and symmetric RPC library"; 21 homepage = http://rpyc.readthedocs.org; 22 license = licenses.mit; 23 }; 24 25}