nixpkgs/pkgs/development/python-modules/pytest-xdist/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest
, setuptools_scm, pytest-forked, filelock, six, isPy3k }:
2017-05-12 07:36:25 +01:00
buildPythonPackage rec {
pname = "pytest-xdist";
2020-08-16 18:31:13 +01:00
version = "2.0.0";
2017-05-12 07:36:25 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:13 +01:00
sha256 = "3217b1f40290570bf27b1f82714fc4ed44c3260ba9b2f6cde0372378fc707ad3";
2017-05-12 07:36:25 +01:00
};
nativeBuildInputs = [ setuptools_scm pytest ];
checkInputs = [ pytest filelock ];
propagatedBuildInputs = [ execnet pytest-forked six ];
2017-05-12 07:36:25 +01:00
# Encountered a memory leak
# https://github.com/pytest-dev/pytest-xdist/issues/462
doCheck = !isPy3k;
2017-05-12 07:36:25 +01:00
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"
2017-05-12 07:36:25 +01:00
'';
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";
2017-05-12 07:36:25 +01:00
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
2017-05-12 07:36:25 +01:00
};
}