guix-patches
[Top][All Lists]
Advanced

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

[bug#33952] [PATCH 12/14] gnu: Add python-gast.


From: Ricardo Wurmus
Subject: [bug#33952] [PATCH 12/14] gnu: Add python-gast.
Date: Wed, 2 Jan 2019 17:25:10 +0100

* gnu/packages/python.scm (python-gast): New variable.
---
 gnu/packages/python.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 93189d143..64d4b25ce 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -15153,6 +15153,28 @@ factored out version of @code{unparse} found in the 
Python source
 distribution.")
     (license license:bsd-3)))
 
+(define-public python-gast
+  (package
+    (name "python-gast")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "gast" version))
+       (sha256
+        (base32
+         "0c296xm1vz9x4w4inmdl0k8mnc0i9arw94si2i7pglpc461r0s3h"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-astunparse" ,python-astunparse)))
+    (home-page "https://pypi.org/project/gast/";)
+    (synopsis "Generic Python AST that abstracts the underlying Python 
version")
+    (description
+     "GAST provides a compatibility layer between the AST of various Python
+versions, as produced by @code{ast.parse} from the standard @code{ast}
+module.")
+    (license license:bsd-3)))
+
 (define-public python-wikidata
   (package
     (name "python-wikidata")
-- 
2.19.1






reply via email to

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