summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-29 13:18:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:43 +0100
commit2f0d00229d64c2a2f6e0c4f33107b0493519b9bf (patch)
tree6bc6b958a3dc6841ab02ce3bb6c2e8273571da28 /gnu
parent4aa0fdf75f65412ce6402a13406c0a720300e737 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-check.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index a0a9f8fda97..097535bad11 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