python311Packages.geoip2: fix build

This commit is contained in:
Martin Weinelt 2024-03-10 14:48:31 +01:00
parent d21f262d02
commit 4a9e4a831b

View File

@ -2,6 +2,8 @@
, aiohttp
, buildPythonPackage
, fetchPypi
, setuptools
, setuptools-scm
, maxminddb
, mocket
, pytestCheckHook
@ -15,7 +17,7 @@
buildPythonPackage rec {
pname = "geoip2";
version = "4.8.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -24,6 +26,11 @@ buildPythonPackage rec {
hash = "sha256-3ZzBgLfUFyQkDqSB1dU5FJ5lsjT2QoKyMbkXB5SprDU=";
};
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
aiohttp
maxminddb