3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pytest-xdist/default.nix

32 lines
1 KiB
Nix

{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock }:
buildPythonPackage rec {
pname = "pytest-xdist";
version = "1.24.0";
src = fetchPypi {
inherit pname version;
sha256 = "8e188d13ce6614c7a678179a76f46231199ffdfe6163de031c17e62ffa256917";
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [ pytest pytest-forked filelock ];
propagatedBuildInputs = [ execnet ];
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 = with stdenv.lib; {
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
homepage = https://github.com/pytest-dev/pytest-xdist;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}