guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: python-wcwidth: Adjust indentation.


From: guix-commits
Subject: 08/09: gnu: python-wcwidth: Adjust indentation.
Date: Tue, 14 Jan 2020 17:52:26 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 28ac442b0e3853605ce47ebc332b1d9fe97ce0d4
Author: Marius Bakke <address@hidden>
AuthorDate: Tue Jan 14 23:28:26 2020 +0100

    gnu: python-wcwidth: Adjust indentation.
    
    * gnu/packages/python-xyz.scm (python-wcwidth): Re-indent.
---
 gnu/packages/python-xyz.scm | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0f5e564..a4f36c4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]