This treewide change targets Python packages that specifies pytest flags with pytestFlagsArray, and whose flags cannot be consructed by other pytestCheckHook-honoured arguments. Use the __structuredAttrs-agnostic argument pytestFlags instead of the deprecated pytestFlagsArray. For flags with option arguments, join each flag and their option argument into a single command-line argument following POSIX Utility Argument Syntax[1] for easier overriding (remove/replace). Examples: * [ "-W" "ignore:message:WarningClass" ] -> [ "-Wignore:message:WarningClass" ] * [ "--reruns" "3" ] -> [ "--reruns=3" ] [1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
84 lines
1.6 KiB
Nix
84 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
matplotlib,
|
|
numpy,
|
|
pandas,
|
|
pillow,
|
|
pytest,
|
|
pytest-datadir,
|
|
pytestCheckHook,
|
|
pyyaml,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-regressions";
|
|
version = "2.7.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ESSS";
|
|
repo = "pytest-regressions";
|
|
tag = "v${version}";
|
|
hash = "sha256-w9uwJJtikbjUtjpJJ3dEZ1zU0KbdyLaDuJWJr45WpCg=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
dependencies = [
|
|
pytest-datadir
|
|
pyyaml
|
|
];
|
|
|
|
optional-dependencies = {
|
|
dataframe = [
|
|
pandas
|
|
numpy
|
|
];
|
|
image = [
|
|
numpy
|
|
pillow
|
|
];
|
|
num = [
|
|
numpy
|
|
pandas
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
matplotlib
|
|
pandas
|
|
pytestCheckHook
|
|
] ++ lib.flatten (lib.attrValues optional-dependencies);
|
|
|
|
pytestFlags = [
|
|
"-Wignore::DeprecationWarning"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pytest_regressions"
|
|
"pytest_regressions.plugin"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/ESSS/pytest-regressions/blob/${src.tag}/CHANGELOG.rst";
|
|
description = "Pytest fixtures to write regression tests";
|
|
longDescription = ''
|
|
pytest-regressions makes it simple to test general data, images,
|
|
files, and numeric tables by saving expected data in a data
|
|
directory (courtesy of pytest-datadir) that can be used to verify
|
|
that future runs produce the same data.
|
|
'';
|
|
homepage = "https://github.com/ESSS/pytest-regressions";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|