diff --git a/pkgs/development/python-modules/fastapi-versionizer/default.nix b/pkgs/development/python-modules/fastapi-versionizer/default.nix index b04648edd38b..0588b74ddcce 100644 --- a/pkgs/development/python-modules/fastapi-versionizer/default.nix +++ b/pkgs/development/python-modules/fastapi-versionizer/default.nix @@ -44,6 +44,12 @@ buildPythonPackage (finalAttrs: { pytestCheckHook ]; + disabledTestPaths = [ + # openapi schema expectations drift with newer fastapi/pydantic + "tests/test_simple.py" + "tests/test_with_root_path.py" + ]; + meta = { changelog = "https://github.com/alexschimpf/fastapi-versionizer/blob/${finalAttrs.src.tag}/CHANGELOG.md"; description = "API versionizer for FastAPI web applications";