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

34 lines
930 B
Nix
Raw Normal View History

2017-08-24 17:34:20 +00:00
{ stdenv, fetchPypi, buildPythonPackage, isPy3k, execnet, pytest, setuptools_scm, pytest-forked }:
2017-05-12 06:36:25 +00:00
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-xdist";
2017-10-25 18:04:35 +00:00
version = "1.20.1";
2017-05-12 06:36:25 +00:00
src = fetchPypi {
inherit pname version;
2017-10-25 18:04:35 +00:00
sha256 = "433e82f9b34986a4e4b2be38c60e82cca3ac64b7e1b38f4d8e3e118292939712";
2017-05-12 06:36:25 +00:00
};
2017-08-24 17:34:20 +00:00
buildInputs = [ pytest setuptools_scm pytest-forked];
2017-05-12 06:36:25 +00:00
propagatedBuildInputs = [ execnet ];
postPatch = ''
2017-05-12 06:36:25 +00:00
rm testing/acceptance_test.py testing/test_remote.py testing/test_slavemanage.py
'';
checkPhase = ''
py.test testing
2017-05-12 06:36:25 +00:00
'';
# Only test on 3.x
# INTERNALERROR> AttributeError: 'NoneType' object has no attribute 'getconsumer'
doCheck = isPy3k;
2017-05-12 06:36:25 +00: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;
};
}