depot/third_party/nixpkgs/pkgs/development/python-modules/execnet/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

67 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
isPyPy,
fetchPypi,
hatchling,
hatch-vcs,
gevent,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "execnet";
version = "2.1.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-UYm1LGEhwk/q4ogWarQbMlScfiNIZSc2VAuebn1OcuM=";
};
postPatch =
''
# remove vbox tests
rm testing/test_termination.py
rm testing/test_channel.py
rm testing/test_xspec.py
rm testing/test_gateway.py
''
+ lib.optionalString isPyPy ''
rm testing/test_multi.py
'';
nativeBuildInputs = [
hatchling
hatch-vcs
];
# sometimes crashes with: OSError: [Errno 9] Bad file descriptor
doCheck = !isPyPy;
nativeCheckInputs = [
gevent
pytestCheckHook
];
disabledTests = [
# gets stuck
"test_popen_io"
# OSError: [Errno 9] Bad file descriptor
"test_stdouterrin_setnull"
];
pytestFlagsArray = [ "-vvv" ];
pythonImportsCheck = [ "execnet" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
changelog = "https://github.com/pytest-dev/execnet/blob/v${version}/CHANGELOG.rst";
description = "Distributed Python deployment and communication";
homepage = "https://execnet.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}