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
This commit is contained in:
Sharlatan Hellseher 2025-07-29 13:18:00 +01:00
parent 4aa0fdf75f
commit 2f0d00229d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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