summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-06-17 00:07:11 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 11:35:58 +0100
commit336f0203914feeb4f2802c2f95aefb7ca3c3bfae (patch)
tree4b4170b8f956084df21ffa880fc7f39744d72bc9 /gnu/packages/python-xyz.scm
parent0a75322fe1a23749db73d5f765e8b8d2d5e30362 (diff)
gnu: python-urwid-readline: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-urwid-readline) [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: Iffbffc78f25c80dc6cbcee5e3105e8051c13edfd Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 2 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1420cf6cb3..7a56a0a24a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14822,16 +14822,9 @@ features useful for text console applications.")
(sha256
(base32
"0y9k86p31mlr9rwnrbljvfgl183r5j60yaj0r3scljn1m0mlg8qg"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ (build-system pyproject-build-system)
(propagated-inputs (list python-urwid))
- (native-inputs (list python-pytest))
+ (native-inputs (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/rr-/urwid_readline")
(synopsis "Text input widget for urwid that supports readline shortcuts")
(description