guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0c46bd269790e177392461225191c8776fe2943b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 28 17:35:05 2025 +0000

    gnu: Add python-pytest-harvest.
    
    * gnu/packages/python-check.scm (python-pytest-harvest): New variable.
    
    Change-Id: I7863cdee38e7e5fa015d6bf4802b23ffe381cadb
---
 gnu/packages/python-check.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index d257929d28..27713a7f77 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2688,6 +2688,35 @@ times and detect flakyness.")
 @url{https://github.com/spulec/freezegun, freezegun}.")
     (license license:expat)))
 
+(define-public python-pytest-harvest
+  (package
+    (name "python-pytest-harvest")
+    (version "1.10.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest-harvest" version))
+       (sha256
+        (base32 "066lqx46hqlvllq6ppmyi47fjc1dww7jwa4wfkkx2hrf3z7s9kr7"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))        ;XXX: cycle with python-pytest-harvest
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools
+           python-setuptools-scm))
+    (propagated-inputs
+     (list python-decopatch
+           python-makefun
+           python-packaging))
+    (home-page "https://github.com/smarie/python-pytest-harvest";)
+    (synopsis "Pytest plugin to store data during runs")
+    (description
+     "This package implements a functionality to store data created during your
+pytest tests execution, and retrieve it at the end of the session, e.g. for
+applicative benchmarking purposes.")
+    (license license:bsd-3)))
+
 (define-public python-pytest-helpers-namespace
   (package
     (name "python-pytest-helpers-namespace")

Reply via email to