about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/GeoIP/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/GeoIP/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/GeoIP/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/GeoIP/default.nix b/nixpkgs/pkgs/development/python-modules/GeoIP/default.nix
new file mode 100644
index 000000000000..550fa1da3edf
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/GeoIP/default.nix
@@ -0,0 +1,28 @@
+{lib, buildPythonPackage, fetchPypi
+, geoip, nose}:
+
+buildPythonPackage rec {
+  pname = "GeoIP";
+  version = "1.3.2";
+
+  checkInputs = [ nose ];
+  propagatedBuildInputs = [
+    geoip
+  ];
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1rphxf3vrn8wywjgr397f49s0s22m83lpwcq45lm0h2p45mdm458";
+  };
+
+  # Tests cannot be run because they require data that isn't included in the
+  # release tarball.
+  checkPhase = "true";
+
+  meta = {
+    description = "MaxMind GeoIP Legacy Database - Python API";
+    homepage = https://www.maxmind.com/;
+    maintainers = with lib.maintainers; [ jluttine ];
+    license = lib.licenses.lgpl21Plus;
+  };
+}