gnu: python-wcwidth: Adjust indentation.
* gnu/packages/python-xyz.scm (python-wcwidth): Re-indent.master
parent
a72a18920b
commit
28ac442b0e
|
@ -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))
|
||||
|
|
Reference in New Issue