summaryrefslogtreecommitdiff
path: root/gnu/packages/python-compression.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-05-21 12:39:44 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:19:45 +0100
commitbf571505d542db84246cec7481e81031d4fc98d0 (patch)
treeef0b1dc9f9d87f61e0db870ceeffc5aca92a2208 /gnu/packages/python-compression.scm
parentbcea11ed48d81e4a09d4fd452cc263e19c507916 (diff)
gnu: python-pyppmd: Proper disable benchmarks.
* gnu/packages/python-compression.scm (python-pyppmd): [arguments] <test-flags>: Proper disable benchmarks. [native-inputs]: Add python-hypothesis and python-pytest-timeout. Relates-to: guix/guix!8749 Change-Id: I0fa5dc54bde98a85a0942fc8ebd0b065a37ecb34 Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-compression.scm')
-rw-r--r--gnu/packages/python-compression.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm
index 1dea1ebbbb8..a3b48a8e72d 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -598,10 +598,12 @@ headers compressed with QPACK.")
598 (base32 "1a3cqa6l1ip3kdd9d2h94znzrmgrhdbica83b494m9i3vl4i3glz")))) 598 (base32 "1a3cqa6l1ip3kdd9d2h94znzrmgrhdbica83b494m9i3vl4i3glz"))))
599 (build-system pyproject-build-system) 599 (build-system pyproject-build-system)
600 (arguments 600 (arguments
601 (list #:test-flags #~(list "--ignore=tests/test_benchmark.py"))) 601 (list #:test-flags #~(list "--benchmark-disable")))
602 (native-inputs 602 (native-inputs
603 (list python-pytest 603 (list python-hypothesis
604 python-pytest
604 python-pytest-benchmark 605 python-pytest-benchmark
606 python-pytest-timeout
605 python-setuptools 607 python-setuptools
606 python-setuptools-scm)) 608 python-setuptools-scm))
607 (home-page "https://github.com/miurahr/pyppmd") 609 (home-page "https://github.com/miurahr/pyppmd")