guix-commits
[Top][All Lists]
Advanced

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

129/285: gnu: Add python-funcparserlib.


From: guix-commits
Subject: 129/285: gnu: Add python-funcparserlib.
Date: Sun, 29 Dec 2019 20:44:15 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit 8f596f57f3d821e9040b10d454538a6db2ccf4d5
Author: Jesse Gibbons <address@hidden>
Date:   Wed Dec 25 01:22:49 2019 -0600

    gnu: Add python-funcparserlib.
    
    * gnu/packages/python-xyz.scm (python-funcparserlib): New variable.
    
    Signed-off-by: Brett Gilio <address@hidden>
---
 gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5433f4f..0f682db 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17047,3 +17047,33 @@ paths.")
 slowly because it imports pkg_resources.  This package allows such setup
 scripts to load entry points more quickly.")
     (license license:bsd-3)))
+
+(define-public python-funcparserlib
+  (package
+    (name "python-funcparserlib")
+    (version "0.3.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "funcparserlib" version))
+       (sha256
+        (base32
+         "07f9cgjr3h4j2m67fhwapn8fja87vazl58zsj4yppf9y3an2x6dp"))))
+    (native-inputs
+     `(("python-tox" ,python-tox)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (invoke "tox"))))))
+    (build-system python-build-system)
+    (home-page
+     "https://github.com/vlasovskikh/funcparserlib";)
+    (synopsis
+     "Recursive descent parsing library based on functional combinators")
+    (description
+     "This package is a recurisve descent parsing library for Python based on
+functional combinators.  Parser combinators are just higher-order functions
+that take parsers as their arguments and return them as result values.")
+    (license license:expat)))



reply via email to

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