From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1slY-0001mI-Pv for guix-patches@gnu.org; Tue, 10 Oct 2017 07:32:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1slU-0006JI-Sa for guix-patches@gnu.org; Tue, 10 Oct 2017 07:32:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50635) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e1slU-0006J7-PK for guix-patches@gnu.org; Tue, 10 Oct 2017 07:32:00 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e1slU-00077y-J5 for guix-patches@gnu.org; Tue, 10 Oct 2017 07:32:00 -0400 Subject: [bug#28778] [PATCH 2/2] gnu: Add python2-py2neo. Resent-Message-ID: References: From: Roel Janssen In-reply-to: Date: Tue, 10 Oct 2017 13:31:05 +0200 Message-ID: MIME-Version: 1.0 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: 28778@debbugs.gnu.org >>From 368fcbed4eed12c3115e09e9b5002d27ca4816bd Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 10 Oct 2017 13:24:09 +0200 Subject: [PATCH 2/2] gnu: Add python2-py2neo. * gnu/packages/python.scm (python2-py2neo): New variable. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4557637b1..27f4653f5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7611,6 +7611,27 @@ to the database using Neo4j's binary protocol. It aims to be minimal, while being idiomatic to Python.") (license license:asl2.0))) +(define-public python2-py2neo + (package + (name "python2-py2neo") + (version "3.1.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "py2neo" version)) + (sha256 + (base32 + "1f1q95vqcvlc3nsc33p841swnjdcjazddlq2dzi3qfnjqjrajxw1")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (home-page "http://py2neo.org") + (synopsis "Library and toolkit for working with Neo4j in Python") + (description "This package provides a client library and toolkit for +working with Neo4j from within Python applications and from the command +line. The core library has no external dependencies and has been carefully +designed to be easy and intuitive to use.") + (license license:asl2.0))) + (define-public python-wrapt (package (name "python-wrapt") -- 2.13.3