From f27a8c458fb0813f6c02a90e515c975970696f0a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 12 Oct 2025 22:01:17 +0100 Subject: [PATCH] gnu: python-urwid-readline: Update to 0.15.1. * gnu/packages/python-xyz.scm (python-urwid-readline): Update to 0.15.1. [native-inputs]: Remove python-wheel. Change-Id: If63798ad4e7732ba74aecd8b68ae43db9cbe00ab --- gnu/packages/python-xyz.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 088f87be45668532b294c3dab9a4adfa214f5970..ec1ab5cede2a34a255759d456f465eaecfdcd9c2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15263,7 +15263,7 @@ features useful for text console applications.") (define-public python-urwid-readline (package (name "python-urwid-readline") - (version "0.13") + (version "0.15.1") (source (origin (method git-fetch) @@ -15272,11 +15272,13 @@ features useful for text console applications.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 - "0y9k86p31mlr9rwnrbljvfgl183r5j60yaj0r3scljn1m0mlg8qg")))) + (base32 "0zhpx86gvpkziclb7bcqn73fadkzn805rjqy7lzhrza46lphq8qy")))) (build-system pyproject-build-system) - (propagated-inputs (list python-urwid)) - (native-inputs (list python-pytest python-setuptools python-wheel)) + (native-inputs + (list python-pytest + python-setuptools)) + (propagated-inputs + (list python-urwid)) (home-page "https://github.com/rr-/urwid_readline") (synopsis "Text input widget for urwid that supports readline shortcuts") (description