nixpkgs/pkgs/development/python-modules/pyro4/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, python
, serpent
, dill
, cloudpickle
, msgpack
, isPy27
, selectors34
2020-12-01 00:15:53 +00:00
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Pyro4";
2020-06-06 06:47:26 +00:00
version = "4.80";
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:26 +00:00
sha256 = "46847ca703de3f483fbd0b2d22622f36eff03e6ef7ec7704d4ecaa3964cb2220";
};
propagatedBuildInputs = [
serpent
2019-10-27 14:07:39 +00:00
] ++ lib.optionals isPy27 [ selectors34 ];
buildInputs = [
dill
cloudpickle
msgpack
];
2020-12-01 00:15:53 +00:00
checkInputs = [ pytestCheckHook ];
2019-10-27 14:07:39 +00:00
# add testsupport.py to PATH
2020-12-01 00:15:53 +00:00
preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
2019-10-27 14:07:39 +00:00
# ignore network related tests, which fail in sandbox
pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ];
2020-12-01 00:15:53 +00:00
disabledTests = [
"StartNSfunc"
"Broadcast"
"GetIP"
];
# otherwise the tests hang the build
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Distributed object middleware for Python (RPC)";
homepage = "https://github.com/irmen/Pyro4";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}