From 70ccb0dec2983e576833de94fe35081dd5d60b5b Mon Sep 17 00:00:00 2001 From: Maurice <16151097+tu-maurice@users.noreply.github.com> Date: Sun, 12 Nov 2023 20:48:23 +0100 Subject: [PATCH] python311Packages.pydantic-settings: mark broken (#267088) python311Packages.pydantic-settings: mark broken It was packaged for pydantic 2.0, which was then reverted due to too many regressions. Keep the package, but mark it broken until our pydantic version catches up. --- pkgs/development/python-modules/pydantic-settings/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/pydantic-settings/default.nix b/pkgs/development/python-modules/pydantic-settings/default.nix index a375ded35f04..c27bb5f27576 100644 --- a/pkgs/development/python-modules/pydantic-settings/default.nix +++ b/pkgs/development/python-modules/pydantic-settings/default.nix @@ -46,6 +46,7 @@ buildPythonPackage rec { description = "Settings management using pydantic"; homepage = "https://github.com/pydantic/pydantic-settings"; license = licenses.mit; + broken = lib.versionOlder pydantic.version "2.0.0"; maintainers = with maintainers; [ ]; }; }