From 2623cf659cdc2c87a0a2542922a6204c5944e331 Mon Sep 17 00:00:00 2001 From: GraysonTinker Date: Tue, 24 Mar 2026 21:33:12 -0700 Subject: [PATCH] python3Packages.llama-index-indices-managed-llama-cloud: drop --- .../default.nix | 46 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 4 -- 3 files changed, 1 insertion(+), 50 deletions(-) delete mode 100644 pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix diff --git a/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix b/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix deleted file mode 100644 index 10d11c058b89..000000000000 --- a/pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - deprecated, - hatchling, - llama-cloud, - llama-index-core, -}: - -buildPythonPackage rec { - pname = "llama-index-indices-managed-llama-cloud"; - version = "0.9.4"; - pyproject = true; - - src = fetchPypi { - pname = "llama_index_indices_managed_llama_cloud"; - inherit version; - hash = "sha256-teAHUqswVkq/GcV1laIQf1aXw7A7CFgXtPyoSjjrvVk="; - }; - - pythonRelaxDeps = [ - "deprecated" - "llama-cloud" - ]; - - build-system = [ hatchling ]; - - dependencies = [ - deprecated - llama-cloud - llama-index-core - ]; - - # Tests are only available in the mono repo - doCheck = false; - - pythonImportsCheck = [ "llama_index.indices.managed.llama_cloud" ]; - - meta = { - description = "LlamaCloud Index and Retriever"; - homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/indices/llama-index-indices-managed-llama-cloud"; - 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 661a83ba28cd..17b29965bfb1 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-indices-managed-llama-cloud = throw "'llama-index-indices-managed-llama-cloud' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # Added 2026-03-24 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 llama-index-readers-llama-parse = throw "'llama-index-readers-llama-parse' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # added 2026-03-25 llama-parse = throw "'llama-parse' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # added 2026-03-25 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1986b3631198..bb6f55ed3da6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9043,10 +9043,6 @@ self: super: with self; { callPackage ../development/python-modules/llama-index-graph-stores-neptune { }; - llama-index-indices-managed-llama-cloud = - callPackage ../development/python-modules/llama-index-indices-managed-llama-cloud - { }; - llama-index-instrumentation = callPackage ../development/python-modules/llama-index-instrumentation { };