~ruther/guix-local

0c46bd269790e177392461225191c8776fe2943b — Sharlatan Hellseher 6 months ago 5a1cebd
gnu: Add python-pytest-harvest.

* gnu/packages/python-check.scm (python-pytest-harvest): New variable.

Change-Id: I7863cdee38e7e5fa015d6bf4802b23ffe381cadb
1 files changed, 29 insertions(+), 0 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +29 -0
@@ 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")