1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-27 12:40:32 +02:00

gnu: python-lzstring: Switch to pyproject.

* gnu/packages/python-compression.scm (python-lzstring):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.

Change-Id: Ice9f51ce58198fc0b29313e9e5db9babeb07d8a0
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-08-12 18:18:47 +02:00
committed by Sharlatan Hellseher
parent f604ac060e
commit fa46f86f81

View File

@@ -639,9 +639,10 @@ the LZ4 frame format.")
(method url-fetch)
(uri (pypi-uri "lzstring" version))
(sha256
(base32
"18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs"))))
(build-system python-build-system)
(base32 "18ly9pppy2yspxzw7k1b23wk77k7m44rz2g0271bqgqrk3jn3yhs"))))
(build-system pyproject-build-system)
(native-inputs
(list python-setuptools python-wheel))
(propagated-inputs
(list python-future))
(home-page "https://github.com/gkovacs/lz-string-python")