summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 13:46:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 15:27:36 +0100
commit079da33c52bf36450ce2db75c2ad0c5e8bcc00cf (patch)
tree03ace12d1aef7f677a8863a4c4ae217e4f3dd5d1
parent99ad507626b40491ebaf90d61be059e2ecd6be19 (diff)
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
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 9 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 51182d4c970..bdc7fdcc2a4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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