~ruther/guix-local

2f0d00229d64c2a2f6e0c4f33107b0493519b9bf — Sharlatan Hellseher 9 months ago 4aa0fdf
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
1 files changed, 5 insertions(+), 5 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +5 -5
@@ 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