nixpkgs/pkgs/development/python-modules/pyro4/default.nix
2023-01-24 15:01:12 +01:00

72 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, cloudpickle
, dill
, fetchPypi
, msgpack
, pytestCheckHook
, pythonAtLeast
, serpent
}:
buildPythonPackage rec {
pname = "pyro4";
version = "4.82";
format = "setuptools";
# No support Python >= 3.11
# https://github.com/irmen/Pyro4/issues/246
disabled = pythonAtLeast "3.11";
src = fetchPypi {
pname = "Pyro4";
inherit version;
hash = "sha256-UR9bCATpLdd9wzrfnJR3h+P56cWpaxIWLwVXp8TOIfs=";
};
propagatedBuildInputs = [
serpent
];
buildInputs = [
dill
cloudpickle
msgpack
];
nativeCheckInputs = [
pytestCheckHook
];
# add testsupport.py to PATH
preCheck = ''
PYTHONPATH=tests/PyroTests:$PYTHONPATH
'';
disabledTestPaths = [
# ignore network related tests, which fail in sandbox
"tests/PyroTests/test_naming.py"
];
disabledTests = [
"StartNSfunc"
"Broadcast"
"GetIP"
];
# otherwise the tests hang the build
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [
"Pyro4"
];
meta = with lib; {
description = "Distributed object middleware for Python (RPC)";
homepage = "https://github.com/irmen/Pyro4";
changelog = "https://github.com/irmen/Pyro4/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}