From a9a3c1de18536e52236ca2e4c220e01fb242c51b Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 13 Dec 2025 10:29:50 -0800 Subject: [PATCH] python3Packages.langchain-classic: disable automatic updates Langchain isn't shipping tagged updates and r-ryamtm keeps assigning tags on update. Disabled. --- .../development/python-modules/langchain-classic/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/langchain-classic/default.nix b/pkgs/development/python-modules/langchain-classic/default.nix index 568329772527..a2918077e6d5 100644 --- a/pkgs/development/python-modules/langchain-classic/default.nix +++ b/pkgs/development/python-modules/langchain-classic/default.nix @@ -104,7 +104,10 @@ buildPythonPackage rec { ]; # Bulk updater selects wrong tag (there is no tag for this yet) - passthru.skipBulkUpdate = true; + passthru = { + skipBulkUpdate = true; + updateScript = false; + }; pythonImportsCheck = [ "langchain_classic" ];