2018-10-18 04:40:16 +02:00
|
|
|
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, attrs, hypothesis, py
|
2018-04-04 20:15:54 +02:00
|
|
|
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
|
2018-08-13 09:31:19 +02:00
|
|
|
, atomicwrites, mock, writeText, pathlib2
|
2017-08-24 19:34:20 +02:00
|
|
|
}:
|
2019-01-21 22:48:12 +01:00
|
|
|
buildPythonPackage rec {
|
2019-02-14 08:44:48 +01:00
|
|
|
version = "4.2.1";
|
2019-01-21 22:48:12 +01:00
|
|
|
pname = "pytest";
|
2017-01-24 20:06:52 +01:00
|
|
|
|
2019-01-21 22:48:12 +01:00
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
2017-01-24 20:06:52 +01:00
|
|
|
|
2019-01-21 22:48:12 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 08:44:48 +01:00
|
|
|
sha256 = "c2396a15726218a2dfef480861c4ba37bd3952ebaaa5b0fede3fc23fddcd7f8c";
|
2017-01-24 20:06:52 +01:00
|
|
|
};
|
|
|
|
|
2019-01-21 22:48:12 +01:00
|
|
|
checkInputs = [ hypothesis mock ];
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
|
|
|
|
++ stdenv.lib.optionals (!isPy3k) [ funcsigs ]
|
|
|
|
++ stdenv.lib.optionals (pythonOlder "3.6") [ pathlib2 ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
2019-02-14 08:44:48 +01:00
|
|
|
$out/bin/py.test -x testing/ -k "not test_collect_pyargs_with_testpaths"
|
2019-01-21 22:48:12 +01:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Remove .pytest_cache when using py.test in a Nix build
|
|
|
|
setupHook = writeText "pytest-hook" ''
|
|
|
|
pytestcachePhase() {
|
|
|
|
find $out -name .pytest_cache -type d -exec rm -rf {} +
|
|
|
|
}
|
|
|
|
|
|
|
|
preDistPhases+=" pytestcachePhase"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://docs.pytest.org;
|
|
|
|
description = "Framework for writing tests";
|
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2017-01-24 20:06:52 +01:00
|
|
|
};
|
|
|
|
}
|