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

83 lines
1.7 KiB
Nix
Raw Normal View History

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