linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / GeoIP / default.nix
blob0e4b66fe962f9514da251a6fcf9694bd7365b564
1 {lib, buildPythonPackage, fetchPypi
2 , geoip, nose}:
4 buildPythonPackage rec {
5   pname = "GeoIP";
6   version = "1.3.2";
8   checkInputs = [ nose ];
9   propagatedBuildInputs = [
10     geoip
11   ];
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1rphxf3vrn8wywjgr397f49s0s22m83lpwcq45lm0h2p45mdm458";
16   };
18   # Tests cannot be run because they require data that isn't included in the
19   # release tarball.
20   checkPhase = "true";
22   meta = {
23     description = "MaxMind GeoIP Legacy Database - Python API";
24     homepage = "https://www.maxmind.com/";
25     maintainers = with lib.maintainers; [ jluttine ];
26     license = lib.licenses.lgpl21Plus;
27   };