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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
886 B
Nix
Raw Normal View History

{ buildPythonPackage, lib, fetchPypi, pythonOlder
2020-08-17 12:40:55 +00:00
, aiohttp
2019-07-04 15:30:50 +00:00
, maxminddb
2020-08-17 12:40:55 +00:00
, mocket
2019-07-04 15:30:50 +00:00
, requests
, requests-mock
, pytestCheckHook
2019-07-04 15:30:50 +00:00
}:
buildPythonPackage rec {
2021-11-25 22:46:47 +00:00
version = "4.5.0";
2019-07-04 15:30:50 +00:00
pname = "geoip2";
disabled = pythonOlder "3.6";
2019-07-04 15:30:50 +00:00
src = fetchPypi {
inherit pname version;
2021-11-25 22:46:47 +00:00
sha256 = "b542252e87eb40adc3a2fc0f4e84b514c4c5e04ed46923a3a74d509f25f3103a";
2019-07-04 15:30:50 +00:00
};
2020-08-17 12:40:55 +00:00
patchPhase = ''
substituteInPlace requirements.txt --replace "requests>=2.24.0,<3.0.0" "requests"
'';
2019-07-04 15:30:50 +00:00
2020-08-17 12:40:55 +00:00
propagatedBuildInputs = [ aiohttp requests maxminddb ];
checkInputs = [
mocket
requests-mock
pytestCheckHook
];
pythonImportsCheck = [ "geoip2" ];
2019-07-04 15:30:50 +00:00
meta = with lib; {
description = "Python client for GeoIP2 webservice client and database reader";
homepage = "https://github.com/maxmind/GeoIP2-python";
license = licenses.asl20;
2019-07-04 15:30:50 +00:00
maintainers = with maintainers; [ ];
};
}