2018-10-26 17:49:58 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, plumbum
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rpyc";
|
2019-06-02 23:08:15 +01:00
|
|
|
version = "4.1.0";
|
2018-10-26 17:49:58 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-02 23:08:15 +01:00
|
|
|
sha256 = "1pz90h21f74n8i3cx5ndxm4r3rismkx5qbw1c0cmfci9a3009rq5";
|
2018-10-26 17:49:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ nose plumbum ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Remote Python Call (RPyC), a transparent and symmetric RPC library";
|
2019-04-22 09:24:21 +01:00
|
|
|
homepage = https://rpyc.readthedocs.org;
|
2018-10-26 17:49:58 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|