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