1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pytest-rerunfailures: init at 2.0.1

(cherry picked from commit 6ddf8f31d3998e464c10fdb59385bf79cf08ef09)
This commit is contained in:
Jascha Geerds 2016-09-10 12:01:19 +02:00
parent ff25c5e21a
commit 074013bca5

View file

@ -4671,6 +4671,31 @@ in modules // {
};
};
pytest-rerunfailures = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-rerunfailures";
version = "2.0.1";
src = pkgs.fetchurl {
url = "mirror://pypi/p/${pname}/${name}.tar.gz";
sha256 = "1zzxlswbny8dp3c1sbhpyms1xkknxb6qfji3y3azc7gc95324xsv";
};
propagatedBuildInputs = with self; [ pytest ];
checkPhase = ''
py.test
'';
meta = {
description = "pytest plugin to re-run tests to eliminate flaky failures.";
homepage = https://github.com/pytest-dev/pytest-rerunfailures;
license = licenses.mpl20;
maintainers = with maintainers; [ jgeerds ];
platforms = platforms.all;
};
};
pytestflakes = buildPythonPackage rec {
name = "pytest-flakes-${version}";
version = "1.0.0";