summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-12-30 20:13:40 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-05 01:10:24 +0100
commit21d87dc6a281f96489491efe5377a408a114c799 (patch)
tree72c2dabd549fbc37761e3a24afcc77601747a9a7
parenta74ef53ea9fc30d9c6aa2f65c506247954fca37d (diff)
downloadnixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar.gz
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar.bz2
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar.lz
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar.xz
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.tar.zst
nixpkgs-21d87dc6a281f96489491efe5377a408a114c799.zip
python3Packages.pytest-rerunfailures: 10.2 -> 10.3
-rw-r--r--pkgs/development/python-modules/pytest-rerunfailures/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix
index 9b16760b23b..8ea63cfa5ff 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.2";
+  version = "10.3";
 
   disabled = pythonOlder "3.5";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "9e1e1bad51e07642c5bbab809fc1d4ec8eebcb7de86f90f1a26e6ef9de446697";
+    sha256 = "sha256-2CRNeZ+Jpu215XMB3a6ztvENZpFjjVHoCzcTEVkuKMY=";
   };
 
   buildInputs = [ pytest ];