15 buildPythonPackage rec {
16 pname = "pytest-xdist";
20 inherit pname version;
21 sha256 = "1vh4ps32lp5ignch5adbl3pgchvigdfmrl6qpmhxih54wa1qw3il";
32 propagatedBuildInputs = [
39 # Encountered a memory leak
40 # https://github.com/pytest-dev/pytest-xdist/issues/462
44 # Excluded tests access file system
45 py.test testing -k "not test_distribution_rsyncdirs_example \
46 and not test_rsync_popen_with_path \
47 and not test_popen_rsync_subdir \
48 and not test_init_rsync_roots \
49 and not test_rsyncignore"
53 description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
54 homepage = "https://github.com/pytest-dev/pytest-xdist";
55 license = licenses.mit;
56 maintainers = with maintainers; [ dotlambda ];