From 508aa2c8f77f04f9b27ffd7660190fe808f535f3 Mon Sep 17 00:00:00 2001 From: Sam Estep Date: Tue, 5 May 2026 21:38:35 -0400 Subject: [PATCH] python314Packages.dbt-semantic-interfaces: drop --- .../python-modules/dbt-semantic-interfaces/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix b/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix index 2198c6665e70..fa3dd4773342 100644 --- a/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix +++ b/pkgs/development/python-modules/dbt-semantic-interfaces/default.nix @@ -12,6 +12,7 @@ more-itertools, pydantic, pytestCheckHook, + pythonAtLeast, pyyaml, typing-extensions, }: @@ -21,6 +22,10 @@ buildPythonPackage (finalAttrs: { version = "0.10.5"; pyproject = true; + # This project uses pydantic.v1 which doesn't support Python 3.14 or later: + # https://pydantic.dev/articles/pydantic-v2-12-release#support-for-python-314 + disabled = pythonAtLeast "3.14"; + src = fetchFromGitHub { owner = "dbt-labs"; repo = "dbt-semantic-interfaces";