guix-commits
[Top][All Lists]
Advanced

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

02/09: gnu: Add python-tokenize-rt.


From: Ricardo Wurmus
Subject: 02/09: gnu: Add python-tokenize-rt.
Date: Thu, 15 Feb 2018 11:19:32 -0500 (EST)

rekado pushed a commit to branch core-updates
in repository guix.

commit 8b2ad13b1952892adb1222ab69592c81b7be9a25
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Feb 14 14:26:54 2018 +0100

    gnu: Add python-tokenize-rt.
    
    * gnu/packages/python.scm (python-tokenize-rt): New variable.
---
 gnu/packages/python.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8c239c3..18aa4f5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -12663,3 +12663,24 @@ Week instances stringify to this form.")
 
 (define-public python2-isoweek
   (package-with-python2 python-isoweek))
+
+(define-public python-tokenize-rt
+  (package
+    (name "python-tokenize-rt")
+    (version "2.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "tokenize-rt" version))
+       (sha256
+        (base32
+         "1yjvbz7rvrz31zjyax1cgy3xhf4wb3j18jwnj4bnl77ca4gliyiw"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/asottile/tokenize-rt";)
+    (synopsis "Wrapper around the stdlib tokenize which roundtrips.")
+    (description
+     "This Python library is a wrapper around @code{tokenize} from the Python
+standard library.  It provides two additional tokens @code{ESCAPED_NL} and
address@hidden, and a @code{Token} data type.  Use @code{src_to_tokens}
+and @code{tokens_to_src} to roundtrip.")
+    (license license:expat)))



reply via email to

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