5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
66 lines
1.3 KiB
Nix
66 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; [ ];
|
|
};
|
|
}
|