From 8b2ad13b1952892adb1222ab69592c81b7be9a25 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 14 Feb 2018 14:26:54 +0100 Subject: 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 8c239c3f11..18aa4f5900 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 +@code{UNIMPORTANT_WS}, and a @code{Token} data type. Use @code{src_to_tokens} +and @code{tokens_to_src} to roundtrip.") + (license license:expat))) -- cgit v1.2.3