mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
886 B
Nix
41 lines
886 B
Nix
{ buildPythonPackage, lib, fetchPypi, pythonOlder
|
|
, aiohttp
|
|
, maxminddb
|
|
, mocket
|
|
, requests
|
|
, requests-mock
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "4.1.0";
|
|
pname = "geoip2";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "57d8d15de2527e0697bbef44fc16812bba709f03a07ef99297bd56c1df3b1efd";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace requirements.txt --replace "requests>=2.24.0,<3.0.0" "requests"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ aiohttp requests maxminddb ];
|
|
|
|
checkInputs = [
|
|
mocket
|
|
requests-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "geoip2" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for GeoIP2 webservice client and database reader";
|
|
homepage = "https://github.com/maxmind/GeoIP2-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|