From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gejLX-0006Bj-Mw for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gejLK-0004yt-N9 for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:13 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:58144) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gejLH-0004xR-4M for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gejLH-0002NW-0C for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:03 -0500 Subject: [bug#33952] [PATCH 11/14] gnu: Add python-astunparse. Resent-Message-ID: From: Ricardo Wurmus Date: Wed, 2 Jan 2019 17:25:09 +0100 Message-ID: <20190102162512.28727-2-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20190102162512.28727-1-ricardo.wurmus@mdc-berlin.de> References: <20190102161807.28297-1-ricardo.wurmus@mdc-berlin.de> <20190102162512.28727-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33952@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/python.scm (python-astunparse): New variable. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 541861b75..93189d143 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15130,6 +15130,29 @@ of Python libraries for building Python applications.") source via the AST.") (license license:bsd-3))) +(define-public python-astunparse + (package + (name "python-astunparse") + (version "1.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "astunparse" version)) + (sha256 + (base32 + "1jhidwyrqn17avqh9xnnm3wd7q7aahaq009cba67g86y6gxicyyj")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) ; there are none + (propagated-inputs + `(("python-six" ,python-six) + ("python-wheel" ,python-wheel))) + (home-page "https://github.com/simonpercivall/astunparse") + (synopsis "AST unparser for Python") + (description "This package provides an AST unparser for Python. It is a +factored out version of @code{unparse} found in the Python source +distribution.") + (license license:bsd-3))) + (define-public python-wikidata (package (name "python-wikidata") -- 2.19.1