[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add python-geoip2.
From: |
guix-commits |
Subject: |
04/04: gnu: Add python-geoip2. |
Date: |
Fri, 6 Dec 2019 13:39:27 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 0a71e34e49c811c1d84565001226c84e70f325ef
Author: Hartmut Goebel <address@hidden>
Date: Sun Nov 17 17:23:34 2019 +0100
gnu: Add python-geoip2.
* gnu/packages/geo.scm (python-geoip2): New variable.
---
gnu/packages/geo.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 26d270e..f87225d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -65,6 +65,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages protobuf)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages qt)
#:use-module (gnu packages sqlite)
@@ -1267,3 +1268,26 @@ associated with an address.")
by IP address subnets (IPv4 or IPv6). This is a Python module for reading
MaxMind DB files.")
(license license:asl2.0)))
+
+(define-public python-geoip2
+ (package
+ (name "python-geoip2")
+ (version "2.9.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "geoip2" version))
+ (sha256
+ (base32
+ "1w7cay5q6zawjzivqbwz5cqx1qbdjw6kbriccb7l46p7b39fkzzp"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;; Tests require a copy of the maxmind database
+ (inputs
+ `(("python-maxminddb" ,python-maxminddb)
+ ("python-requests" ,python-requests)))
+ (home-page "http://www.maxmind.com/")
+ (synopsis "MaxMind GeoIP2 API")
+ (description "Provides an API for the GeoIP2 web services and databases.
+The API also works with MaxMind’s free GeoLite2 databases.")
+ (license license:asl2.0)))