10 buildPythonPackage rec {
11 pname = "pytest-instafail";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-M6YG9+DI5kbcO/7g1eOkt7eO98NhaM+h89k698pwbJ4=";
22 buildInputs = [ pytest ];
24 nativeCheckInputs = [ pytestCheckHook ];
26 pythonImportsCheck = [ "pytest_instafail" ];
29 description = "pytest plugin that shows failures and errors instantly instead of waiting until the end of test session";
30 homepage = "https://github.com/pytest-dev/pytest-instafail";
31 changelog = "https://github.com/pytest-dev/pytest-instafail/blob/v${version}/CHANGES.rst";
32 license = licenses.bsd3;
33 maintainers = with maintainers; [ jacg ];