about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRaphael Das Gupta <git@raphael.dasgupta.ch>2021-10-10 20:00:14 +0200
committerGitHub <noreply@github.com>2021-10-10 20:00:14 +0200
commitf52699bc713545e32b5aaa1290e03c4ebf0d4110 (patch)
tree2a9c7b9b642164fb733c05a2f59ef31d4d280336 /pkgs
parent4172adde122752268ce9c415723a5f41edb26e68 (diff)
python3Packages.pytest-rerunfailures: 10.1 → 10.2 (#141166)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytest-rerunfailures/default.nix6
1 files 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 a643e7dc5a540..9b16760b23b82 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 ];