python3Packages.geoip2: 5.1.0 -> 5.2.0

https://github.com/maxmind/GeoIP2-python/blob/v5.2.0/HISTORY.rst

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:08 +01:00
parent 4d6f2efd04
commit c9fec7f0e1
@@ -10,22 +10,27 @@
pytest-httpserver,
requests,
setuptools-scm,
setuptools,
uv-build,
urllib3,
}:
buildPythonPackage rec {
pname = "geoip2";
version = "5.1.0";
version = "5.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-7j+H8M6TJetkhP4Yy9l3GgPQorrR3RVvo1hPr6Vi05o=";
hash = "sha256-bJ3tGVP46xYEPtCo6iDm6VJOp7Zet0VyThJJCspE7wA=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build>=0.7.19,<0.8.0" uv_build
'';
build-system = [
setuptools
uv-build
setuptools-scm
];