16 buildPythonPackage rec {
17 pname = "pytest-regressions";
19 format = "setuptools";
21 disabled = pythonOlder "3.6";
24 inherit pname version;
25 hash = "sha256-gYx4hMHP87q/ie67AsvCezB4VrGYVCfCTVLLgSoQb9k=";
28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
38 propagatedBuildInputs = [
52 pythonImportsCheck = [
54 "pytest_regressions.plugin"
58 description = "Pytest fixtures to write regression tests";
60 pytest-regressions makes it simple to test general data, images,
61 files, and numeric tables by saving expected data in a data
62 directory (courtesy of pytest-datadir) that can be used to verify
63 that future runs produce the same data.
65 homepage = "https://github.com/ESSS/pytest-regressions";
66 license = licenses.mit;
67 maintainers = with maintainers; [ AluisioASG ];