diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-09 23:04:13 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-09 23:04:13 +0200 |
commit | 9ef33dce949214d018774a4ff82f069b1a5e1f0f (patch) | |
tree | 232590cdca27fc7c0a047d1903db7dbd0a6b1f40 /gnu/packages/python-check.scm | |
parent | 5fcbbe37c08dbe913d62523695a19357a08e2701 (diff) | |
parent | 8fbd8c82455e6f1bbbe623965b2452f8f8a01242 (diff) | |
download | guix-9ef33dce949214d018774a4ff82f069b1a5e1f0f.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r-- | gnu/packages/python-check.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 9930b8c8ec..77ddaf00b0 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1249,19 +1249,21 @@ for the @code{pytest} framework.") (define-public python-pytest-benchmark (package (name "python-pytest-benchmark") - (version "3.2.3") + (version "3.4.1") (source (origin (method url-fetch) (uri (pypi-uri "pytest-benchmark" version)) (sha256 (base32 - "0a4mpb4j73dsyk47hd1prrjpfk4r458s102cn80rf253jg818hxd")))) + "0ivvrnhax2xr62grlgw4hlyjmmjp6nc35431j7c82nny2bwn7qj0")))) (build-system python-build-system) + (arguments + '(#:test-target "check")) (propagated-inputs (list python-py-cpuinfo)) (native-inputs - (list python-pathlib2 python-pytest)) + (list python-pytest)) (home-page "https://github.com/ionelmc/pytest-benchmark") (synopsis "Pytest fixture for benchmarking code") (description |