summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2022-02-18 21:38:57 +0100
committerMarius Bakke <marius@gnu.org>2022-02-19 10:43:23 +0100
commitc4c45205a746a372df3f99ffc026971d010fdaf2 (patch)
treeb8b653c54e8b823d4a54d832d17eb6b2a654ca4d /gnu/packages/python-xyz.scm
parent6d3337ccbaa7dba6f2708ecb9fc112da05f56c45 (diff)
gnu: Add python-beniget.
* gnu/packages/python-xyz.scm (python-beniget): New variable.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 517648ecf78..516fa4057f6 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
14708alternative when librabbitmq is not available.") 14708alternative when librabbitmq is not available.")
14709 (license license:lgpl2.1+))) 14709 (license license:lgpl2.1+)))
14710 14710
14711(define-public python-beniget
14712 (package
14713 (name "python-beniget")
14714 (version "0.4.1")
14715 (home-page "https://github.com/serge-sans-paille/beniget")
14716 (source
14717 (origin
14718 (method url-fetch)
14719 (uri (pypi-uri "beniget" version))
14720 (sha256
14721 (base32 "035c4f78yllpw2c5p1w92520rilm7nnpsqh7yvi3qmfhi8xlnmbm"))))
14722 (build-system python-build-system)
14723 (propagated-inputs
14724 (list python-gast))
14725 (synopsis "Extract semantic information about static Python code")
14726 (description
14727 "Beniget is a collection of analyzers for Python @acronym{AST,
14728Abstract Syntax Tree}. It is a building block for writing a static analyzer
14729or compiler for Python.")
14730 (license license:bsd-3)))
14731
14711(define-public python-txamqp 14732(define-public python-txamqp
14712 (package 14733 (package
14713 (name "python-txamqp") 14734 (name "python-txamqp")