about summary refs log tree commit diff
path: root/pkgs/development/python-modules/geoip2
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-30 05:31:11 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-30 05:31:11 +0200
commit8a12230be6fb3a5176786cdd5aa7cba042690ba3 (patch)
tree262227ca67c62348c654f6a060fd0fddc200e70d /pkgs/development/python-modules/geoip2
parent3d6c93dd79b6542cc3a565b37cd83e7ff318797e (diff)
python310Packages.geoip2: add missing dependency, description
Diffstat (limited to 'pkgs/development/python-modules/geoip2')
-rw-r--r--pkgs/development/python-modules/geoip2/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/geoip2/default.nix b/pkgs/development/python-modules/geoip2/default.nix
index 2a626c9c9ea89..c5e9a01db5381 100644
--- a/pkgs/development/python-modules/geoip2/default.nix
+++ b/pkgs/development/python-modules/geoip2/default.nix
@@ -4,6 +4,7 @@
 , mocket
 , requests
 , requests-mock
+, urllib3
 , pytestCheckHook
 }:
 
@@ -21,7 +22,7 @@ buildPythonPackage rec {
     substituteInPlace requirements.txt --replace "requests>=2.24.0,<3.0.0" "requests"
   '';
 
-  propagatedBuildInputs = [ aiohttp requests maxminddb ];
+  propagatedBuildInputs = [ aiohttp maxminddb requests urllib3 ];
 
   checkInputs = [
     mocket
@@ -32,7 +33,7 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "geoip2" ];
 
   meta = with lib; {
-    description = "Python client for GeoIP2 webservice client and database reader";
+    description = "GeoIP2 webservice client and database reader";
     homepage = "https://github.com/maxmind/GeoIP2-python";
     license = licenses.asl20;
     maintainers = with maintainers; [ ];