python3Packages.pytest_5: init at 5.4.3
This commit is contained in:
parent
619795114b
commit
2b9faf7def
80
pkgs/development/python-modules/pytest/5.nix
Normal file
80
pkgs/development/python-modules/pytest/5.nix
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, isPy3k, isPyPy
|
||||||
|
, atomicwrites
|
||||||
|
, attrs
|
||||||
|
, funcsigs
|
||||||
|
, hypothesis
|
||||||
|
, mock
|
||||||
|
, more-itertools
|
||||||
|
, packaging
|
||||||
|
, pathlib2
|
||||||
|
, pluggy
|
||||||
|
, py
|
||||||
|
, pygments
|
||||||
|
, python
|
||||||
|
, setuptools
|
||||||
|
, setuptools_scm
|
||||||
|
, six
|
||||||
|
, toml
|
||||||
|
, wcwidth
|
||||||
|
, writeText
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "5.4.3";
|
||||||
|
pname = "pytest";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1n67lk8iwlsmfdm8663k8l7isllg1xd3n9p1yla7885szhdk6ybr";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ hypothesis pygments ];
|
||||||
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
atomicwrites
|
||||||
|
attrs
|
||||||
|
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
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -2633,9 +2633,15 @@ in {
|
|||||||
pythonPackages = self;
|
pythonPackages = self;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
# pytest>=6 is too new for most packages
|
||||||
pytest = if isPy3k then self.pytest_5 else self.pytest_4;
|
pytest = if isPy3k then self.pytest_5 else self.pytest_4;
|
||||||
|
|
||||||
pytest_5 = callPackage ../development/python-modules/pytest {
|
pytest_6 = callPackage ../development/python-modules/pytest {
|
||||||
|
# hypothesis tests require pytest that causes dependency cycle
|
||||||
|
hypothesis = self.hypothesis.override { doCheck = false; };
|
||||||
|
};
|
||||||
|
|
||||||
|
pytest_5 = callPackage ../development/python-modules/pytest/5.nix {
|
||||||
# hypothesis tests require pytest that causes dependency cycle
|
# hypothesis tests require pytest that causes dependency cycle
|
||||||
hypothesis = self.hypothesis.override { doCheck = false; };
|
hypothesis = self.hypothesis.override { doCheck = false; };
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user