17 buildPythonPackage rec {
18 pname = "pytest-regressions";
20 format = "setuptools";
22 disabled = pythonOlder "3.6";
25 inherit pname version;
26 hash = "sha256-gYx4hMHP87q/ie67AsvCezB4VrGYVCfCTVLLgSoQb9k=";
29 nativeBuildInputs = [ setuptools-scm ];
31 buildInputs = [ pytest ];
33 propagatedBuildInputs = [
46 "ignore::DeprecationWarning"
49 pythonImportsCheck = [
51 "pytest_regressions.plugin"
54 optional-dependencies = {
70 description = "Pytest fixtures to write regression tests";
72 pytest-regressions makes it simple to test general data, images,
73 files, and numeric tables by saving expected data in a data
74 directory (courtesy of pytest-datadir) that can be used to verify
75 that future runs produce the same data.
77 homepage = "https://github.com/ESSS/pytest-regressions";
78 license = licenses.mit;