python3Packages.langchain-anthropic: disable bulk updates

Changed files
+6 -2
pkgs
development
python-modules
langchain-anthropic
+6 -2
pkgs/development/python-modules/langchain-anthropic/default.nix
···
pythonImportsCheck = [ "langchain_anthropic" ];
-
passthru.updateScript = gitUpdater {
-
rev-prefix = "langchain-anthropic==";
+
passthru = {
+
# python updater script sets the wrong tag
+
skipBulkUpdate = true;
+
updateScript = gitUpdater {
+
rev-prefix = "langchain-anthropic==";
+
};
};
meta = {