From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 4/5] gnu: Add python-rply. Date: Wed, 13 Jan 2016 09:27:26 +0800 Message-ID: <1452648447-2684-4-git-send-email-iyzsong@gmail.com> References: <1452648447-2684-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJAGk-0003Cu-3y for guix-devel@gnu.org; Tue, 12 Jan 2016 20:30:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aJAGg-0002hG-ST for guix-devel@gnu.org; Tue, 12 Jan 2016 20:30:38 -0500 Received: from smtp28.openmailbox.org ([62.4.1.62]:58489) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJAGg-0002hC-M7 for guix-devel@gnu.org; Tue, 12 Jan 2016 20:30:34 -0500 In-Reply-To: <1452648447-2684-1-git-send-email-iyzsong@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= * gnu/packages/python.scm (python-rply): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 95e9a09..d4cc8d3 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6689,3 +6689,29 @@ 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 "") + (synopsis + "Pure Python based parser that also works with RPython") + (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)) -- 2.5.0