guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add python-maxminddb.


From: guix-commits
Subject: 03/04: gnu: Add python-maxminddb.
Date: Fri, 6 Dec 2019 13:39:27 -0500 (EST)

htgoebel pushed a commit to branch master
in repository guix.

commit b1414a81367605741a1d18f2a0bcebc784381cf7
Author: Hartmut Goebel <address@hidden>
Date:   Sun Nov 17 19:37:03 2019 +0100

    gnu: Add python-maxminddb.
    
    * gnu/packages/geo.scm (python-maxminddb): New variable.
---
 gnu/packages/geo.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 7be1ae5..26d270e 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1244,3 +1244,26 @@ format is a custom, but open, binary format designed to 
facilitate fast
 lookups of IP addresses while allowing flexibility in the type of data
 associated with an address.")
     (license license:asl2.0)))
+
+(define-public python-maxminddb
+  (package
+    (name "python-maxminddb")
+    (version "1.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "maxminddb" version))
+       (sha256
+        (base32
+         "0y9giw81k4wdmpryr4k42w50z292mf364a6vs1vxf83ksc9ig6j4"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f)) ;; Tests require a copy of the maxmind database
+    (inputs
+     `(("libmaxminddb" ,libmaxminddb)))
+    (home-page "http://www.maxmind.com/";)
+    (synopsis "Reader for the MaxMind DB format")
+    (description "MaxMind DB is a binary file format that stores data indexed
+by IP address subnets (IPv4 or IPv6).  This is a Python module for reading
+MaxMind DB files.")
+    (license license:asl2.0)))



reply via email to

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