python3Packages.openapi-core: fix build with jsonschema-path 0.5.0

This commit is contained in:
Robert Schütz 2026-05-23 19:11:56 -07:00 committed by Martin Weinelt
commit 05c1067067

View file

@ -42,6 +42,10 @@ buildPythonPackage rec {
build-system = [ poetry-core ];
pythonRelaxDeps = [
"jsonschema-path"
];
dependencies = [
isodate
more-itertools
@ -86,6 +90,11 @@ buildPythonPackage rec {
"tests/integration/contrib/django/"
];
disabledTests = [
# https://github.com/p1c2u/jsonschema-path/pull/262 broke comparison of `SchemaPath`s
"test_returns_default_server"
];
pythonImportsCheck = [
"openapi_core"
"openapi_core.validation.request.validators"