1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-lzstring: Disable tests.

* gnu/packages/python-compression.scm (python-lzstring)[arguments]
<tests?>: No tests in PyPI.
[native-inputs]: Remove python-wheel.

Change-Id: I9ae57baffbfe2217db628fcf0ada41725aeb9b6a
This commit is contained in:
Sharlatan Hellseher
2025-10-03 11:47:25 +01:00
parent 6a29d42d30
commit 355547af03

View File

@@ -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
;; <https://github.com/eduardtomasek/lz-string-python> 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")