From 355547af0354d1b4fed416cd7bb797b777233ab7 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 3 Oct 2025 11:47:25 +0100 Subject: [PATCH] gnu: python-lzstring: Disable tests. * gnu/packages/python-compression.scm (python-lzstring)[arguments] : No tests in PyPI. [native-inputs]: Remove python-wheel. Change-Id: I9ae57baffbfe2217db628fcf0ada41725aeb9b6a --- gnu/packages/python-compression.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index b5db28d6eb251b7999d43b6b6630347eae3c3470..f58b15525b96e46d6698c9a3bf2cda456f30e527 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -689,8 +689,13 @@ the LZ4 frame format.") (sha256 (base32 "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs")))) (build-system pyproject-build-system) + (arguments + ;; No tests in PyPI, this project is a fork of + ;; and doesn't provide + ;; tags. + (list #:tests? #f)) (native-inputs - (list python-setuptools python-wheel)) + (list python-setuptools)) (propagated-inputs (list python-future)) (home-page "https://github.com/gkovacs/lz-string-python")