2022-03-31 13:49:20 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2022-07-14 22:13:44 +00:00
|
|
|
, callPackage
|
2022-03-31 13:49:20 +00:00
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
|
|
|
, writeText
|
|
|
|
|
|
|
|
# build
|
|
|
|
, setuptools-scm
|
|
|
|
|
|
|
|
# propagates
|
2020-05-04 07:50:15 +00:00
|
|
|
, attrs
|
2022-12-29 11:44:20 +00:00
|
|
|
, exceptiongroup
|
2020-08-16 19:42:02 +00:00
|
|
|
, iniconfig
|
2020-05-04 07:50:15 +00:00
|
|
|
, packaging
|
|
|
|
, pluggy
|
|
|
|
, py
|
2022-03-02 21:14:57 +00:00
|
|
|
, tomli
|
2017-08-24 17:34:20 +00:00
|
|
|
}:
|
2020-05-04 07:50:15 +00:00
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest";
|
2022-12-29 11:44:20 +00:00
|
|
|
version = "7.2.0";
|
2022-03-31 13:49:20 +00:00
|
|
|
format = "pyproject";
|
2019-09-15 14:02:10 +00:00
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-12-29 11:44:20 +00:00
|
|
|
hash = "sha256-xAFOtA4Q8R81WtTjwvssbG0ZGcc/O1pDPeRwggLK3lk=";
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
|
2022-07-14 22:13:44 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"testout"
|
|
|
|
];
|
|
|
|
|
2022-03-31 13:49:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools-scm
|
|
|
|
];
|
2021-02-20 16:02:43 +00:00
|
|
|
|
2020-08-16 19:42:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
attrs
|
|
|
|
iniconfig
|
|
|
|
packaging
|
|
|
|
pluggy
|
|
|
|
py
|
2022-03-02 21:14:57 +00:00
|
|
|
tomli
|
2022-12-29 11:44:20 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.11") [
|
|
|
|
exceptiongroup
|
2022-03-31 13:49:20 +00:00
|
|
|
];
|
2019-01-21 21:48:12 +00:00
|
|
|
|
2022-07-14 22:13:44 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $testout
|
|
|
|
cp -R testing $testout/testing
|
2019-01-21 21:48:12 +00:00
|
|
|
'';
|
|
|
|
|
2022-07-14 22:13:44 +00:00
|
|
|
doCheck = false;
|
|
|
|
passthru.tests.pytest = callPackage ./tests.nix { };
|
|
|
|
|
2019-01-21 21:48:12 +00:00
|
|
|
# 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"
|
2021-10-01 17:44:47 +00:00
|
|
|
|
|
|
|
# pytest generates it's own bytecode files to improve assertion messages.
|
|
|
|
# These files similar to cpython's bytecode files but are never laoded
|
|
|
|
# by python interpreter directly. We remove them for a few reasons:
|
|
|
|
# - files are non-deterministic: https://github.com/NixOS/nixpkgs/issues/139292
|
|
|
|
# (file headers are generatedt by pytest directly and contain timestamps)
|
|
|
|
# - files are not needed after tests are finished
|
|
|
|
pytestRemoveBytecodePhase () {
|
|
|
|
# suffix is defined at:
|
2022-12-29 11:44:20 +00:00
|
|
|
# https://github.com/pytest-dev/pytest/blob/7.2.0/src/_pytest/assertion/rewrite.py#L51-L53
|
2021-10-01 17:44:47 +00:00
|
|
|
find $out -name "*-pytest-*.py[co]" -delete
|
|
|
|
}
|
|
|
|
preDistPhases+=" pytestRemoveBytecodePhase"
|
2019-01-21 21:48:12 +00:00
|
|
|
'';
|
|
|
|
|
2019-07-17 18:36:47 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pytest"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-21 21:48:12 +00:00
|
|
|
description = "Framework for writing tests";
|
2021-02-20 16:02:43 +00:00
|
|
|
homepage = "https://docs.pytest.org";
|
|
|
|
changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}";
|
2019-01-21 21:48:12 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
|
|
|
|
license = licenses.mit;
|
2017-01-24 19:06:52 +00:00
|
|
|
};
|
|
|
|
}
|