diff options
author | David Elsing <david.elsing@posteo.net> | 2024-03-23 22:04:46 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-06-18 11:34:31 +0200 |
commit | 796c3bdb55249d59a314d5c8cac7948e6a3af941 (patch) | |
tree | 07c852fc8ed79e5c937a0d726a7c07f28f74b1bf | |
parent | 63233f1f0e8a5c8e2e29b781167b15419abd998c (diff) | |
download | guix-796c3bdb55249d59a314d5c8cac7948e6a3af941.tar.gz guix-796c3bdb55249d59a314d5c8cac7948e6a3af941.zip |
gnu: Add python-pytest-rerunfailures-13.
* gnu/packages/python-check.scm (python-pytest-rerunfailures-13): New variable.
-rw-r--r-- | gnu/packages/python-check.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 3b77495609..1890042420 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2579,6 +2579,17 @@ in an opinionated way.") eliminate flaky failures.") (license license:mpl2.0))) +(define-public python-pytest-rerunfailures-13 + (package + (inherit python-pytest-rerunfailures) + (version "13.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-rerunfailures" version)) + (sha256 + (base32 "16cin0chv59w4rvnd6r0fisp0s8avmp07rwn9da6yixw43jdncp1")))))) + (define-public python-xunitparser (package (name "python-xunitparser") |