gnu: Add python-columnize.

* gnu/packages/python-xyz.scm (python-columnize): New variable.

Change-Id: Idf3ec4993b9d93d3d1e41e101dfdd76adff922fb
This commit is contained in:
Danny Milosavljevic 2024-12-10 03:19:45 +01:00
parent 7efe81ea7d
commit 9e1ee5f77d
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -21388,6 +21388,24 @@ Python implementation of the @code{wcwidth} and @code{wcswidth} C functions
specified in POSIX.1-2001 and POSIX.1-2008.")
(license license:expat)))
(define-public python-columnize
(package
(name "python-columnize")
(version "0.3.11")
(source
(origin
(method url-fetch)
(uri (pypi-uri "columnize" version))
(sha256
(base32 "1clb3lfw694crq8m767q0yjaazkplcrbzdr9fr2w39hhndivhcd6"))))
(build-system pyproject-build-system)
(home-page "https://github.com/rocky/pycolumnize")
(synopsis "Format a simple (i.e. not nested) list into aligned columns.")
(description
"This package provides a way to format a simple (i.e. not nested) list
into aligned columns.")
(license license:expat)))
(define-public python-chai
(package
(name "python-chai")