guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python-esprima.


From: guix-commits
Subject: branch master updated: gnu: Add python-esprima.
Date: Tue, 25 Jan 2022 12:59:59 -0500

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a58bcf927c gnu: Add python-esprima.
a58bcf927c is described below

commit a58bcf927c02f17c5b24fc935393932096127c4a
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Tue Jan 25 18:47:09 2022 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8bd5f655ba..c8ba314d38 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28768,3 +28768,21 @@ implementation, so that it supports any Galois field 
higher than 2^3,
 but not binary streams.")
     (license license:public-domain)))
 
+(define-public python-esprima
+  (package
+    (name "python-esprima")
+    (version "4.0.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "esprima" version))
+        (sha256
+          (base32 "1vi32g991lxcxzmncfiszh8m9bwkh4887szskkdi0a9wdn3imnq8"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/Kronuz/esprima-python";)
+    (synopsis
+      "ECMAScript parsing infrastructure for analysis in Python")
+    (description
+      "This package provides ECMAScript parsing infrastructure for
+multipurpose analysis in Python.")
+    (license license:bsd-3)))



reply via email to

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