567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
execnet,
|
|
pytest,
|
|
setuptools-scm,
|
|
pytest-forked,
|
|
filelock,
|
|
psutil,
|
|
six,
|
|
isPy3k,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-xdist";
|
|
version = "1.34.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1vh4ps32lp5ignch5adbl3pgchvigdfmrl6qpmhxih54wa1qw3il";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
pytest
|
|
];
|
|
nativeCheckInputs = [
|
|
pytest
|
|
filelock
|
|
];
|
|
propagatedBuildInputs = [
|
|
execnet
|
|
pytest-forked
|
|
psutil
|
|
six
|
|
];
|
|
|
|
# Encountered a memory leak
|
|
# https://github.com/pytest-dev/pytest-xdist/issues/462
|
|
doCheck = !isPy3k;
|
|
|
|
checkPhase = ''
|
|
# Excluded tests access file system
|
|
py.test testing -k "not test_distribution_rsyncdirs_example \
|
|
and not test_rsync_popen_with_path \
|
|
and not test_popen_rsync_subdir \
|
|
and not test_init_rsync_roots \
|
|
and not test_rsyncignore"
|
|
'';
|
|
|
|
meta = {
|
|
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
|
|
homepage = "https://github.com/pytest-dev/pytest-xdist";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|