From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49867) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1sih-0001OE-DK for guix-patches@gnu.org; Tue, 10 Oct 2017 07:29:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1sid-0004Gd-6x for guix-patches@gnu.org; Tue, 10 Oct 2017 07:29:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50630) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e1sid-0004GS-0C for guix-patches@gnu.org; Tue, 10 Oct 2017 07:29:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e1sic-0005Av-MV for guix-patches@gnu.org; Tue, 10 Oct 2017 07:29:02 -0400 Subject: [bug#28778] [PATCH 1/2] gnu: Add python2-neo4j-driver. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49456) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1shn-0001Jd-Tv for guix-patches@gnu.org; Tue, 10 Oct 2017 07:28:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1shj-0003uP-VF for guix-patches@gnu.org; Tue, 10 Oct 2017 07:28:11 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:51732) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1shj-0003uL-RO for guix-patches@gnu.org; Tue, 10 Oct 2017 07:28:07 -0400 Received: from [143.121.198.228] (port=34716 helo=cog147) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1e1shj-0008Cj-E7 for guix-patches@gnu.org; Tue, 10 Oct 2017 07:28:07 -0400 From: Roel Janssen Date: Tue, 10 Oct 2017 13:27:53 +0200 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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 --=-=-= Content-Type: text/plain Dear Guix, I'd like to add some Neo4j drivers. This patch provides the 'officially supported' driver. Building for Python 3 fails with this version. The latest 1.5.0rc1 does seem to build for both Python 2 and Python 3, so I'd suggest we add the Python 3 variant once 1.5.0 is out. The other patch is for python2-py2neo, which is another driver. Thanks for your time! Kind regards, Roel Janssen --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-python2-neo4j-driver.patch >From d1198131221a2ab4b0e8e4318e9747e8b5786f32 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 10 Oct 2017 13:23:39 +0200 Subject: [PATCH 1/2] gnu: Add python2-neo4j-driver. * gnu/packages/python.scm (python2-neo4j-driver): 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 f5e92d889..4557637b1 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7591,6 +7591,26 @@ and MAC network addresses.") (define-public python2-netaddr (package-with-python2 python-netaddr)) +(define-public python2-neo4j-driver + (package + (name "python2-neo4j-driver") + (version "1.4.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "neo4j-driver" version)) + (sha256 + (base32 + "011r1vh182p8mm83d8dz9rfnc3l7rf7fd00cyrbyfzi71jmc4g98")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (home-page "https://neo4j.com/developer/python/") + (synopsis "Neo4j driver code written in Python") + (description "This package provides the Neo4j Python driver that connects +to the database using Neo4j's binary protocol. It aims to be minimal, while +being idiomatic to Python.") + (license license:asl2.0))) + (define-public python-wrapt (package (name "python-wrapt") -- 2.13.3 --=-=-=--