1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/development/python-modules/pytest-xdist/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock }:
2017-05-12 07:36:25 +01:00
buildPythonPackage rec {
pname = "pytest-xdist";
2018-11-11 13:47:27 +00:00
version = "1.24.1";
2017-05-12 07:36:25 +01:00
src = fetchPypi {
inherit pname version;
2018-11-11 13:47:27 +00:00
sha256 = "909bb938bdb21e68a28a8d58c16a112b30da088407b678633efb01067e3923de";
2017-05-12 07:36:25 +01:00
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [ pytest pytest-forked filelock ];
2017-05-12 07:36:25 +01:00
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"
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;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
2017-05-12 07:36:25 +01:00
};
}