From 73ee1fa281e5d953c4be2a82eec57d4c6cdaa0d5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 11 Jul 2026 08:53:24 +0200 Subject: [PATCH] python3Packages.aio-geojson-generic-client: 0.5 -> 2026.6.0 Changelog: https://github.com/exxamalte/python-aio-geojson-generic-client/blob/v2026.6.0/CHANGELOG.md --- .../aio-geojson-generic-client/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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 ];