From f52699bc713545e32b5aaa1290e03c4ebf0d4110 Mon Sep 17 00:00:00 2001 From: Raphael Das Gupta Date: Sun, 10 Oct 2021 20:00:14 +0200 Subject: [PATCH] =?UTF-8?q?python3Packages.pytest-rerunfailures:=2010.1=20?= =?UTF-8?q?=E2=86=92=2010.2=20(#141166)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../python-modules/pytest-rerunfailures/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index a643e7dc5a54..9b16760b23b8 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { pname = "pytest-rerunfailures"; - version = "10.1"; + version = "10.2"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; - sha256 = "7617c06de13ee6dd2df9add7e275bfb2bcebbaaf3e450f5937cd0200df824273"; + sha256 = "9e1e1bad51e07642c5bbab809fc1d4ec8eebcb7de86f90f1a26e6ef9de446697"; }; buildInputs = [ pytest ]; @@ -20,7 +20,7 @@ buildPythonPackage rec { ''; meta = with lib; { - description = "pytest plugin to re-run tests to eliminate flaky failures"; + 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; [ das-g ];