me
/
guix
Archived
1
0
Fork 0

gnu: python-urwid: Update to 2.1.2.

* gnu/packages/python-xyz.scm (python-urwid): Update to 2.1.2.
[properties]: New field.
(python2-urwid): Stay at 2.1.0.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Giacomo Leidi 2020-12-28 22:32:38 +01:00 committed by Efraim Flashner
parent 95ef58f03e
commit 6def029ab9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 14 additions and 3 deletions

View File

@ -7631,24 +7631,35 @@ computing.")
(define-public python-urwid (define-public python-urwid
(package (package
(name "python-urwid") (name "python-urwid")
(version "2.1.0") (version "2.1.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "urwid" version)) (uri (pypi-uri "urwid" version))
(sha256 (sha256
(base32 (base32
"11ndnhxd41m13darf5s0c6bafdpkzq1l6mfb04wbzdmyc1hg75h8")))) "1bky2bra6673xx8jy0826znw6cmxs89wcwwzda8d025j3jffx2sq"))))
(build-system python-build-system) (build-system python-build-system)
(home-page "http://urwid.org") (home-page "http://urwid.org")
(synopsis "Console user interface library for Python") (synopsis "Console user interface library for Python")
(description (description
"Urwid is a curses-based UI/widget library for Python. It includes many "Urwid is a curses-based UI/widget library for Python. It includes many
features useful for text console applications.") features useful for text console applications.")
(properties `((python2-variant . ,(delay python2-urwid))))
(license license:lgpl2.1+))) (license license:lgpl2.1+)))
(define-public python2-urwid (define-public python2-urwid
(package-with-python2 python-urwid)) (let ((base (package-with-python2
(strip-python2-variant python-urwid))))
(package/inherit base
(version "2.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "urwid" version))
(sha256
(base32
"11ndnhxd41m13darf5s0c6bafdpkzq1l6mfb04wbzdmyc1hg75h8")))))))
(define-public python-urwidtrees (define-public python-urwidtrees
(package (package