diff options
| -rw-r--r-- | gnu/packages/python-xyz.scm | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9d174204827..5af925bf3a0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15208,14 +15208,14 @@ adherence to RFC 6570, but adds a few extensions.") (define-public python-urwid (package (name "python-urwid") - (version "2.6.16") + (version "3.0.3") (source (origin (method url-fetch) (uri (pypi-uri "urwid" version)) (sha256 (base32 - "18ijvgf1l7jvmg45x1cysn3c9rdrg1w0405acig3hk7476cj7bck")))) + "16zdji1fdr5jbry9h01dxwnadrygs1xj415jqnhmmnlcavfh821h")))) (build-system pyproject-build-system) (arguments (list @@ -15228,17 +15228,14 @@ adherence to RFC 6570, but adds a few extensions.") (list python-pytest python-pytest-cov python-setuptools - python-setuptools-scm - python-wheel)) + python-setuptools-scm)) (propagated-inputs - (list python-typing-extensions - python-wcwidth - - ;; Optional, but tests need them. + (list python-wcwidth + ;; [optional] python-pygobject - python-tornado - python-trio python-pyzmq + python-tornado + python-pyserial python-twisted)) (home-page "https://urwid.org") (synopsis "Console user interface library for Python") @@ -15263,6 +15260,18 @@ features useful for text console applications.") (arguments (list #:tests? #f))))) +(define-public python-urwid-2 + (package + (inherit python-urwid) + (name "python-urwid") + (version "2.6.16") + (source + (origin + (method url-fetch) + (uri (pypi-uri "urwid" version)) + (sha256 + (base32 "18ijvgf1l7jvmg45x1cysn3c9rdrg1w0405acig3hk7476cj7bck")))))) + (define-public python-urwid-3 (package (inherit python-urwid) |
