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
This commit is contained in:
Robert Schütz
2025-10-13 09:06:45 -07:00
parent 72229b769b
commit a26b33fc36

View File

@@ -3,7 +3,6 @@
stdenv, stdenv,
fetchFromGitHub, fetchFromGitHub,
buildPythonPackage, buildPythonPackage,
pythonOlder,
# build-system # build-system
poetry-core, poetry-core,
@@ -35,16 +34,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "connexion"; pname = "connexion";
version = "3.2.0"; version = "3.3.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "spec-first"; owner = "spec-first";
repo = "connexion"; repo = "connexion";
tag = version; tag = version;
hash = "sha256-ruwpA2yd7FRME1FvYrZh0EOnhmQ26YVouXzpVD9ph6g="; hash = "sha256-mUnot9kdUgpxMXjKnkRzK9Dp2c7ibJzv4qX61ZPuJHM=";
}; };
build-system = [ poetry-core ]; build-system = [ poetry-core ];
@@ -84,8 +81,6 @@ buildPythonPackage rec {
disabledTests = [ disabledTests = [
"test_build_example" "test_build_example"
"test_mock_resolver_no_example" "test_mock_resolver_no_example"
"test_sort_apis_by_basepath"
"test_sort_routes"
# Tests require network access # Tests require network access
"test_remote_api" "test_remote_api"
] ]