2020-05-04 08:50:15 +01:00
|
|
|
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, isPy3k, isPyPy
|
|
|
|
, atomicwrites
|
|
|
|
, attrs
|
|
|
|
, funcsigs
|
|
|
|
, hypothesis
|
|
|
|
, mock
|
|
|
|
, more-itertools
|
|
|
|
, packaging
|
|
|
|
, pathlib2
|
|
|
|
, pluggy
|
|
|
|
, py
|
|
|
|
, pygments
|
|
|
|
, python
|
|
|
|
, setuptools
|
|
|
|
, setuptools_scm
|
|
|
|
, six
|
|
|
|
, wcwidth
|
|
|
|
, writeText
|
2017-08-24 18:34:20 +01:00
|
|
|
}:
|
2020-05-04 08:50:15 +01:00
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
buildPythonPackage rec {
|
2020-05-04 08:50:15 +01:00
|
|
|
version = "5.4.1";
|
2019-01-21 21:48:12 +00:00
|
|
|
pname = "pytest";
|
2017-01-24 19:06:52 +00:00
|
|
|
|
2019-09-15 15:02:10 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
preCheck = ''
|
|
|
|
# don't test bash builtins
|
|
|
|
rm testing/test_argcomplete.py
|
|
|
|
'';
|
2017-01-24 19:06:52 +00:00
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-04 08:50:15 +01:00
|
|
|
sha256 = "0w7r0pl1rkzpvb7k3926zcc9brd071zc8b1r3wymz05qfmqf7pc4";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2020-05-04 08:50:15 +01:00
|
|
|
checkInputs = [ hypothesis mock pygments ];
|
2019-07-17 19:36:47 +01:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
2019-05-25 02:02:00 +01:00
|
|
|
propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites wcwidth packaging ]
|
2019-01-21 21:48:12 +00:00
|
|
|
++ stdenv.lib.optionals (pythonOlder "3.6") [ pathlib2 ];
|
|
|
|
|
2019-01-10 19:08:01 +00:00
|
|
|
doCheck = !isPyPy; # https://github.com/pytest-dev/pytest/issues/3460
|
2019-07-17 19:36:47 +01:00
|
|
|
|
2019-08-17 16:16:43 +01:00
|
|
|
# Ignored file https://github.com/pytest-dev/pytest/pull/5605#issuecomment-522243929
|
2019-01-21 21:48:12 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
2019-08-17 16:16:43 +01:00
|
|
|
$out/bin/py.test -x testing/ -k "not test_collect_pyargs_with_testpaths" --ignore=testing/test_junitxml.py
|
2019-01-21 21:48:12 +00: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"
|
|
|
|
'';
|
|
|
|
|
2019-07-17 19:36:47 +01:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pytest"
|
|
|
|
];
|
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://docs.pytest.org";
|
2019-01-21 21:48:12 +00:00
|
|
|
description = "Framework for writing tests";
|
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
|
|
|
license = licenses.mit;
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
}
|