nixpkgs/pkgs/development/python-modules/rpyc/default.nix
R. RyanTM 866157765e python37Packages.rpyc: 4.0.2 -> 4.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-rpyc/versions
2019-06-02 15:08:15 -07:00

26 lines
492 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, plumbum
}:
buildPythonPackage rec {
pname = "rpyc";
version = "4.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1pz90h21f74n8i3cx5ndxm4r3rismkx5qbw1c0cmfci9a3009rq5";
};
propagatedBuildInputs = [ nose plumbum ];
meta = with stdenv.lib; {
description = "Remote Python Call (RPyC), a transparent and symmetric RPC library";
homepage = https://rpyc.readthedocs.org;
license = licenses.mit;
};
}