guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 37f757556892638640691afa6258dceb0df7715e
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Jul 29 13:18:00 2025 +0100

    gnu: python-pytest-benchmark: Update to 5.1.0.
    
    * gnu/packages/python-check.scm (python-pytest-benchmark): Update to 5.1.0.
      [build-system]: Use pyproject.
      [arguments] <tests?>: Disable tests for now to bypass cycles.
      [native-inputs]: Add python-setuptools; replace python-pyetes with
      python-pytest-bootstrap.
    
    Change-Id: I2856dd3f26a4b9600c06eb90b4d4a1b3e55b2bd2
---
 gnu/packages/python-check.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 45d000ba7a..f863721543 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1845,21 +1845,21 @@ Astropy project, but is optimized for use with 
astropy-related projects.")
 (define-public python-pytest-benchmark
   (package
     (name "python-pytest-benchmark")
-    (version "4.0.0")
+    (version "5.1.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pytest-benchmark" version))
        (sha256
         (base32
-         "1la802m5r49y1zqilmhqh0qvbnz139lw0qb3jmm9lngy7sw8a1zv"))))
-    (build-system python-build-system)
+         "01d1mk951ldkw589z7f0w8c22sp5341hphflghgj7s4jqb6n39ly"))))
+    (build-system pyproject-build-system)
     (arguments
-     '(#:test-target "check"))
+     (list #:tests? #f))        ;XXX: cycles with python-nbmake
     (propagated-inputs
      (list python-py-cpuinfo))
     (native-inputs
-     (list python-pytest))
+     (list python-pytest-bootstrap python-setuptools))
     (home-page "https://github.com/ionelmc/pytest-benchmark";)
     (synopsis "Pytest fixture for benchmarking code")
     (description

Reply via email to