nixpkgs/pkgs/development/python-modules/geoip2/default.nix

30 lines
626 B
Nix
Raw Normal View History

2019-07-04 16:30:50 +01:00
{ buildPythonPackage, lib, fetchPypi, isPy27
, ipaddress
, maxminddb
, mock
, requests
, requests-mock
}:
buildPythonPackage rec {
2020-08-16 18:31:00 +01:00
version = "4.0.2";
2019-07-04 16:30:50 +01:00
pname = "geoip2";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:00 +01:00
sha256 = "4afb5d899eac08444e461239c8afb165c90234adc0b5dc952792d9da74c9091b";
2019-07-04 16:30:50 +01:00
};
propagatedBuildInputs = [ requests maxminddb ]
++ lib.optionals isPy27 [ ipaddress ];
checkInputs = [ requests-mock ];
meta = with lib; {
description = "MaxMind GeoIP2 API";
homepage = "https://www.maxmind.com/en/home";
license = licenses.asl20;
2019-07-04 16:30:50 +01:00
maintainers = with maintainers; [ ];
};
}