diff --git a/pkgs/development/python-modules/aio-geojson-generic-client/default.nix b/pkgs/development/python-modules/aio-geojson-generic-client/default.nix index bc3d30ab869d..90fb28845297 100644 --- a/pkgs/development/python-modules/aio-geojson-generic-client/default.nix +++ b/pkgs/development/python-modules/aio-geojson-generic-client/default.nix @@ -2,6 +2,7 @@ lib, aio-geojson-client, aiohttp, + aiointercept, aioresponses, buildPythonPackage, fetchFromGitHub, @@ -14,25 +15,20 @@ buildPythonPackage rec { pname = "aio-geojson-generic-client"; - version = "0.5"; + version = "2026.6.0"; pyproject = true; src = fetchFromGitHub { owner = "exxamalte"; repo = "python-aio-geojson-generic-client"; tag = "v${version}"; - hash = "sha256-/I/n/XXRvm7G16WqVmU+KkyP5DeadqhEpy2EAtDFlCk="; + hash = "sha256-ZRPagyzFAa7f6liT1hWVf6FtabxPKfOzMS/Id14Jpv0="; }; __darwinAllowLocalNetworking = true; build-system = [ setuptools ]; - pythonRelaxDeps = [ - # geojson>=2.4.0,<3, but we have 3.x - "geojson" - ]; - dependencies = [ aiohttp aio-geojson-client @@ -42,6 +38,7 @@ buildPythonPackage rec { nativeCheckInputs = [ aioresponses + aiointercept pytest-asyncio pytestCheckHook ];