2018-01-09 17:08:02 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-rerunfailures";
|
2019-11-29 06:33:15 +00:00
|
|
|
version = "8.0";
|
2018-01-09 17:08:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-29 06:33:15 +00:00
|
|
|
sha256 = "04p8rfvv7yi3gsdm1dw1mfhjwg6507rhgj7nbm5gfqw4kxmj7h8p";
|
2018-01-09 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2019-04-02 22:41:01 +01:00
|
|
|
checkInputs = [ mock pytest ];
|
2018-01-09 17:08:02 +00:00
|
|
|
|
2018-09-13 16:45:49 +01:00
|
|
|
propagatedBuildInputs = [ pytest ];
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-01-06 16:51:29 +00:00
|
|
|
description = "pytest plugin to re-run tests to eliminate flaky failures";
|
2018-01-09 17:08:02 +00:00
|
|
|
homepage = https://github.com/pytest-dev/pytest-rerunfailures;
|
|
|
|
license = licenses.mpl20;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-01-09 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|