1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-08-13 07:41:29 +02:00

gnu: python-text-unidecode: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-text-unidecode)[build-system]:
Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.

Change-Id: I280cd33fa8d28b09d7ade4d72950c95a10b4cc07
This commit is contained in:
Sharlatan Hellseher
2025-10-24 13:46:25 +01:00
parent 99ad507626
commit 079da33c52
+9 -13
View File
@@ -7935,20 +7935,16 @@ Capabilities include:
(package
(name "python-text-unidecode")
(version "1.3")
(source (origin
(method url-fetch)
(uri (pypi-uri "text-unidecode" version))
(sha256
(base32
"14xb99fdv52j21dsljgsbmbaqv10ps4b453p229r29sdn4xn1mms"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "pytest" "-vv"))))))
(source
(origin
(method url-fetch)
(uri (pypi-uri "text-unidecode" version))
(sha256
(base32 "14xb99fdv52j21dsljgsbmbaqv10ps4b453p229r29sdn4xn1mms"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest))
(list python-pytest
python-setuptools))
(home-page "https://github.com/kmike/text-unidecode/")
(synopsis "Decode Unicode data")
(description