me
/
guix
Archived
1
0
Fork 0

gnu: python-wcwidth: Adjust indentation.

* gnu/packages/python-xyz.scm (python-wcwidth): Re-indent.
master
Marius Bakke 2020-01-14 23:28:26 +01:00
parent a72a18920b
commit 28ac442b0e
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 14 additions and 15 deletions

View File

@ -10289,25 +10289,24 @@ are optionally backed by a C extension built on librdkafka.")
(package-with-python2 python-pykafka))
(define-public python-wcwidth
(package
(name "python-wcwidth")
(version "0.1.7")
(source
(origin
(method url-fetch)
(uri (pypi-uri "wcwidth" version))
(sha256
(base32
"0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx"))))
(build-system python-build-system)
(home-page "https://github.com/jquast/wcwidth")
(synopsis "Measure number of terminal column cells of wide-character codes")
(description "Wcwidth measures the number of terminal column cells of
(package
(name "python-wcwidth")
(version "0.1.7")
(source (origin
(method url-fetch)
(uri (pypi-uri "wcwidth" version))
(sha256
(base32
"0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx"))))
(build-system python-build-system)
(home-page "https://github.com/jquast/wcwidth")
(synopsis "Measure number of terminal column cells of wide-character codes")
(description "Wcwidth measures the number of terminal column cells of
wide-character codes. It is useful for those implementing a terminal emulator,
or programs that carefully produce output to be interpreted by one. It is a
Python implementation of the @code{wcwidth} and @code{wcswidth} C functions
specified in POSIX.1-2001 and POSIX.1-2008.")
(license license:expat)))
(license license:expat)))
(define-public python2-wcwidth
(package-with-python2 python-wcwidth))