pythonPackages.Pyro5: init at 5.7
This commit is contained in:
parent
42f0be81ae
commit
0af1d36014
33
pkgs/development/python-modules/pyro5/default.nix
Normal file
33
pkgs/development/python-modules/pyro5/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, serpent
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Pyro5";
|
||||
version = "5.7";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "08n9jqm81pjw9hvzk6kgxwqvh29q3glgccf77kxih5nn77pwdnni";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ serpent ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
# ignore network related tests, which fail in sandbox
|
||||
disabledTests = [ "StartNSfunc" "Broadcast" "GetIP" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Distributed object middleware for Python (RPC)";
|
||||
homepage = "https://github.com/irmen/Pyro5";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
@ -5444,6 +5444,8 @@ in {
|
||||
|
||||
Pyro4 = callPackage ../development/python-modules/pyro4 { };
|
||||
|
||||
Pyro5 = callPackage ../development/python-modules/pyro5 { };
|
||||
|
||||
rope = callPackage ../development/python-modules/rope { };
|
||||
|
||||
ropper = callPackage ../development/python-modules/ropper { };
|
||||
|
Loading…
Reference in New Issue
Block a user