Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 25 lines 492 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, plumbum 6}: 7 8buildPythonPackage rec { 9 pname = "rpyc"; 10 version = "4.1.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0rhmwq1jra2cs0j09z2ks4vnv0svi8lj21nq9qq50i52x4ml4yb7"; 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 = https://rpyc.readthedocs.org; 22 license = licenses.mit; 23 }; 24 25}