From 269e60511859ef2e7ed661bb23b11e862384bcf2 Mon Sep 17 00:00:00 2001 From: GraysonTinker Date: Sat, 14 Mar 2026 14:24:03 -0700 Subject: [PATCH] python3Packages.llama-index-multi-modal-llms-openai: drop --- .../default.nix | 39 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 4 -- 3 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix diff --git a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix b/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix deleted file mode 100644 index be55162974e6..000000000000 --- a/pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - hatchling, - llama-index-core, - llama-index-llms-openai, -}: - -buildPythonPackage rec { - pname = "llama-index-multi-modal-llms-openai"; - version = "0.6.2"; - pyproject = true; - - src = fetchPypi { - pname = "llama_index_multi_modal_llms_openai"; - inherit version; - hash = "sha256-4znltqFodiuXkTN51b6PqdZj/SF435/YmAH5P4fMnRk="; - }; - - build-system = [ hatchling ]; - - dependencies = [ - llama-index-core - llama-index-llms-openai - ]; - - # Tests are only available in the mono repo - doCheck = false; - - pythonImportsCheck = [ "llama_index.multi_modal_llms.openai" ]; - - meta = { - description = "LlamaIndex Multi-Modal-Llms Integration for OpenAI"; - homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-openai"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index ec00adf12f0b..d7c7c135d92d 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -290,6 +290,7 @@ mapAliases { line_profiler = throw "'line_profiler' has been renamed to/replaced by 'line-profiler'"; # Converted to throw 2025-10-29 linear-garage-door = throw "'linear-garage-door' has been superseded by 'nice-go'"; # Added 2025-11-16 linear_operator = throw "'linear_operator' has been renamed to/replaced by 'linear-operator'"; # Converted to throw 2025-10-29 + llama-index-multi-modal-llms-openai = throw "'llama-index-multi-modal-llms-openai' has been removed as it was deprecated in favor of 'llama-index-llms-openai'"; # added 2026-03-25 lmcloud = throw "'lmcloud' has been renamed to/replaced by 'pylamarzocco'"; # Converted to throw 2025-10-29 logilab_common = throw "'logilab_common' has been renamed to/replaced by 'logilab-common'"; # Converted to throw 2025-10-29 loo-py = throw "'loo-py' has been renamed to/replaced by 'loopy'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index db42bee2ca91..f3efa9a9d084 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9061,10 +9061,6 @@ self: super: with self; { callPackage ../development/python-modules/llama-index-llms-openai-like { }; - llama-index-multi-modal-llms-openai = - callPackage ../development/python-modules/llama-index-multi-modal-llms-openai - { }; - llama-index-node-parser-docling = callPackage ../development/python-modules/llama-index-node-parser-docling { };