depot/third_party/nixpkgs/pkgs/development/python-modules/pyro5/default.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

55 lines
1 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, serpent
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyro5";
version = "5.15";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "Pyro5";
inherit version;
hash = "sha256-gsPfyYYLSfiXso/yT+ZxbIQWcsYAr4/kDQ46f6yaP14=";
};
propagatedBuildInputs = [
serpent
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = [
# Ignore network related tests, which fail in sandbox
"StartNSfunc"
"Broadcast"
"GetIP"
"TestNameServer"
"TestBCSetup"
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
"Socket"
];
pythonImportsCheck = [
"Pyro5"
];
meta = with lib; {
description = "Distributed object middleware for Python (RPC)";
homepage = "https://github.com/irmen/Pyro5";
changelog = "https://github.com/irmen/Pyro5/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}