14 buildPythonPackage rec {
15 pname = "pytest-xdist";
20 inherit pname version;
21 sha256 = "718887296892f92683f6a51f25a3ae584993b06f7076ce1e1fd482e59a8220a2";
24 nativeBuildInputs = [ setuptools_scm ];
28 checkInputs = [ pytestCheckHook filelock ];
29 propagatedBuildInputs = [ execnet pytest-forked psutil ];
33 "test_distribution_rsyncdirs_example"
34 "test_rsync_popen_with_path"
35 "test_popen_rsync_subdir"
37 "test_init_rsync_roots"
42 description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
43 homepage = "https://github.com/pytest-dev/pytest-xdist";
44 license = licenses.mit;
45 maintainers = with maintainers; [ dotlambda ];