[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33952] [PATCH 11/14] gnu: Add python-astunparse.
From: |
Ricardo Wurmus |
Subject: |
[bug#33952] [PATCH 11/14] gnu: Add python-astunparse. |
Date: |
Wed, 2 Jan 2019 17:25:09 +0100 |
* gnu/packages/python.scm (python-astunparse): New variable.
---
gnu/packages/python.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 541861b75..93189d143 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -15130,6 +15130,29 @@ of Python libraries for building Python applications.")
source via the AST.")
(license license:bsd-3)))
+(define-public python-astunparse
+ (package
+ (name "python-astunparse")
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "astunparse" version))
+ (sha256
+ (base32
+ "1jhidwyrqn17avqh9xnnm3wd7q7aahaq009cba67g86y6gxicyyj"))))
+ (build-system python-build-system)
+ (arguments '(#:tests? #f)) ; there are none
+ (propagated-inputs
+ `(("python-six" ,python-six)
+ ("python-wheel" ,python-wheel)))
+ (home-page "https://github.com/simonpercivall/astunparse")
+ (synopsis "AST unparser for Python")
+ (description "This package provides an AST unparser for Python. It is a
+factored out version of @code{unparse} found in the Python source
+distribution.")
+ (license license:bsd-3)))
+
(define-public python-wikidata
(package
(name "python-wikidata")
--
2.19.1
- [bug#33952] [PATCH 04/14] gnu: Add protobuf-next., (continued)
- [bug#33952] [PATCH 04/14] gnu: Add protobuf-next., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 02/14] gnu: Add tensorflow-core., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 03/14] gnu: Add c-ares-next., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 07/14] gnu: Add python-doctest-ignore-unicode., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 08/14] gnu: Add python-graphviz., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 05/14] gnu: Add grpc., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 09/14] gnu: Add python-absl-py., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 06/14] gnu: Add graphviz-2.38., Ricardo Wurmus, 2019/01/02
- [bug#33952] [PATCH 10/14] gnu: Add python-astor., Ricardo Wurmus, 2019/01/02