From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35829) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gejLY-0006Bl-DX for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gejLK-0004yn-N2 for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:13 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:43766) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gejLG-0004xJ-MA 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 1gejLG-0002NP-EN for guix-patches@gnu.org; Wed, 02 Jan 2019 11:26:02 -0500 Subject: [bug#33952] [PATCH 10/14] gnu: Add python-astor. Resent-Message-ID: From: Ricardo Wurmus Date: Wed, 2 Jan 2019 17:25:08 +0100 Message-ID: <20190102162512.28727-1-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20190102161807.28297-1-ricardo.wurmus@mdc-berlin.de> References: <20190102161807.28297-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-astor): New variable. --- gnu/packages/python.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ac8de1160..541861b75 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15110,6 +15110,26 @@ RFC 8265 and RFC 8266.") of Python libraries for building Python applications.") (license license:asl2.0))) +(define-public python-astor + (package + (name "python-astor") + (version "0.7.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "astor" version)) + (sha256 + (base32 + "13gv6f2xz9i564byp21gcpc0l3w4cs23k1wbcam8kky2ls3hvhwm")))) + (build-system python-build-system) + ;; FIXME: There are two errors and two test failures. + (arguments `(#:tests? #f)) + (home-page "https://github.com/berkerpeksag/astor") + (synopsis "Read/rewrite/write Python ASTs") + (description "Astor is designed to allow easy manipulation of Python +source via the AST.") + (license license:bsd-3))) + (define-public python-wikidata (package (name "python-wikidata") -- 2.19.1