guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add python2-neo4j-driver.


From: Roel Janssen
Subject: 01/02: gnu: Add python2-neo4j-driver.
Date: Tue, 17 Oct 2017 04:00:29 -0400 (EDT)

roelj pushed a commit to branch master
in repository guix.

commit 4640a11bee7935e2063afda600afb747dc0f4e0b
Author: Roel Janssen <address@hidden>
Date:   Tue Oct 17 09:59:06 2017 +0200

    gnu: Add python2-neo4j-driver.
    
    * gnu/packages/python.scm (python2-neo4j-driver): 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 cab910b..68951d6 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7549,6 +7549,27 @@ and MAC network addresses.")
 (define-public python2-netaddr
   (package-with-python2 python-netaddr))
 
+(define-public python2-neo4j-driver
+  (package
+    (name "python2-neo4j-driver")
+    ;; NOTE: When upgrading to 1.5.0, please add a python3 variant.
+    (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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]