11 buildPythonPackage rec {
12 pname = "pytest-rerunfailures";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-4TLb5CC8R29US5bnA27dCmlwdXQgm2Z3JjyVDRmwkZk=";
23 nativeBuildInputs = [ setuptools ];
25 buildInputs = [ pytest ];
26 propagatedBuildInputs = [ packaging ];
28 nativeCheckInputs = [ pytestCheckHook ];
31 description = "Pytest plugin to re-run tests to eliminate flaky failures";
32 homepage = "https://github.com/pytest-dev/pytest-rerunfailures";
33 license = licenses.mpl20;
34 maintainers = with maintainers; [ das-g ];