guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: Add python-rply.


From: ???
Subject: 04/05: gnu: Add python-rply.
Date: Sat, 16 Jan 2016 00:19:42 +0000

iyzsong pushed a commit to branch master
in repository guix.

commit e224b7d0bdfc58e251ba57f03c1ff74c7b4c2c62
Author: 宋文武 <address@hidden>
Date:   Wed Jan 13 09:24:15 2016 +0800

    gnu: Add python-rply.
    
    * gnu/packages/python.scm (python-rply, python2-rply): New variables.
---
 gnu/packages/python.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 84e93d9..ee6da2c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7032,3 +7032,28 @@ Abstract Syntax Tree.")
 
 (define-public python2-astor
   (package-with-python2 python-astor))
+
+(define-public python-rply
+  (package
+    (name "python-rply")
+    (version "0.7.4")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "rply" version))
+              (sha256
+               (base32
+                "12rp1d9ba7nvd5rhaxi6xzx1rm67r1k1ylsrkzhpwnphqpb06cvj"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-appdirs" ,python-appdirs)
+       ("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/alex/rply";)
+    (synopsis "Parser generator for Python")
+    (description
+     "This package provides a pure Python based parser generator, that also
+works with RPython.  It is a more-or-less direct port of David Bazzley's PLY,
+with a new public API, and RPython support.")
+    (license bsd-3)))
+
+(define-public python2-rply
+  (package-with-python2 python-rply))



reply via email to

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