2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, pythonOlder, fetchPypi, pytest, mock }:
|
2018-01-09 17:08:02 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-rerunfailures";
|
2020-10-03 11:43:12 +01:00
|
|
|
version = "9.1.1";
|
2018-01-09 17:08:02 +00:00
|
|
|
|
2020-06-04 23:24:15 +01:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
2018-01-09 17:08:02 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-03 11:43:12 +01:00
|
|
|
sha256 = "1cb11a17fc121b3918414eb5eaf314ee325f2e693ac7cb3f6abf7560790827f2";
|
2018-01-09 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2021-03-12 22:20:19 +00:00
|
|
|
buildInputs = [ pytest ];
|
2018-01-09 17:08:02 +00:00
|
|
|
|
2021-03-12 22:20:19 +00:00
|
|
|
checkInputs = [ mock pytest ];
|
2018-09-13 16:45:49 +01:00
|
|
|
|
2018-01-09 17:08:02 +00:00
|
|
|
checkPhase = ''
|
2019-01-06 16:51:29 +00:00
|
|
|
py.test test_pytest_rerunfailures.py
|
2018-01-09 17:08:02 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-06 16:51:29 +00:00
|
|
|
description = "pytest plugin to re-run tests to eliminate flaky failures";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-rerunfailures";
|
2018-01-09 17:08:02 +00:00
|
|
|
license = licenses.mpl20;
|
2020-06-04 23:25:54 +01:00
|
|
|
maintainers = with maintainers; [ das-g ];
|
2018-01-09 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|