From a26b33fc3627da491e6118387af6ff941446f790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 13 Oct 2025 09:06:45 -0700 Subject: [PATCH] python3Packages.connexion: 3.2.0 -> 3.3.0 Diff: https://github.com/spec-first/connexion/compare/3.2.0...3.3.0 Changelog: https://github.com/spec-first/connexion/releases/tag/3.3.0 --- pkgs/development/python-modules/connexion/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/connexion/default.nix b/pkgs/development/python-modules/connexion/default.nix index 21a529d5fd83..ff6280e4ea08 100644 --- a/pkgs/development/python-modules/connexion/default.nix +++ b/pkgs/development/python-modules/connexion/default.nix @@ -3,7 +3,6 @@ stdenv, fetchFromGitHub, buildPythonPackage, - pythonOlder, # build-system poetry-core, @@ -35,16 +34,14 @@ buildPythonPackage rec { pname = "connexion"; - version = "3.2.0"; + version = "3.3.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "spec-first"; repo = "connexion"; tag = version; - hash = "sha256-ruwpA2yd7FRME1FvYrZh0EOnhmQ26YVouXzpVD9ph6g="; + hash = "sha256-mUnot9kdUgpxMXjKnkRzK9Dp2c7ibJzv4qX61ZPuJHM="; }; build-system = [ poetry-core ]; @@ -84,8 +81,6 @@ buildPythonPackage rec { disabledTests = [ "test_build_example" "test_mock_resolver_no_example" - "test_sort_apis_by_basepath" - "test_sort_routes" # Tests require network access "test_remote_api" ]