guix-commits
[Top][All Lists]
Advanced

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

07/10: gnu: Add python-beniget.


From: guix-commits
Subject: 07/10: gnu: Add python-beniget.
Date: Sat, 19 Feb 2022 04:49:45 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit c4c45205a746a372df3f99ffc026971d010fdaf2
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Feb 18 21:38:57 2022 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 517648ecf7..516fa4057f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14708,6 +14708,27 @@ It is maintained by the Celery project, and used by 
kombu as a pure python
 alternative when librabbitmq is not available.")
     (license license:lgpl2.1+)))
 
+(define-public python-beniget
+  (package
+    (name "python-beniget")
+    (version "0.4.1")
+    (home-page "https://github.com/serge-sans-paille/beniget";)
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "beniget" version))
+       (sha256
+        (base32 "035c4f78yllpw2c5p1w92520rilm7nnpsqh7yvi3qmfhi8xlnmbm"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-gast))
+    (synopsis "Extract semantic information about static Python code")
+    (description
+     "Beniget is a collection of analyzers for Python @acronym{AST,
+Abstract Syntax Tree}.  It is a building block for writing a static analyzer
+or compiler for Python.")
+    (license license:bsd-3)))
+
 (define-public python-txamqp
   (package
     (name "python-txamqp")



reply via email to

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