From 4dd4389e5bc89be17cc76b08a92b98bbc4902fbb Mon Sep 17 00:00:00 2001 From: GraysonTinker Date: Sat, 14 Mar 2026 16:13:26 -0700 Subject: [PATCH] python3Packages.llama-parse: drop --- .../python-modules/llama-parse/default.nix | 35 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 pkgs/development/python-modules/llama-parse/default.nix diff --git a/pkgs/development/python-modules/llama-parse/default.nix b/pkgs/development/python-modules/llama-parse/default.nix deleted file mode 100644 index 365d60aafbe9..000000000000 --- a/pkgs/development/python-modules/llama-parse/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - llama-cloud-services, - hatchling, -}: - -buildPythonPackage rec { - pname = "llama-parse"; - version = "0.6.90"; - pyproject = true; - - src = fetchPypi { - pname = "llama_parse"; - inherit version; - hash = "sha256-7OqBGrj6lKe4Y90NNYQRPGMFRRM2i64ix6LYtnzPOu0="; - }; - - build-system = [ hatchling ]; - - dependencies = [ llama-cloud-services ]; - - # llama-cloud-services fails to read - pythonRelaxDeps = [ "llama-cloud-services" ]; - - pythonImportsCheck = [ "llama_parse" ]; - - meta = { - description = "Parse files into RAG-Optimized formats"; - homepage = "https://pypi.org/project/llama-parse/"; - 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 0aa634344fec..661a83ba28cd 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -292,6 +292,7 @@ mapAliases { 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 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 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 3e6b86a605c9..1986b3631198 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9111,8 +9111,6 @@ self: super: with self; { llama-index-workflows = callPackage ../development/python-modules/llama-index-workflows { }; - llama-parse = callPackage ../development/python-modules/llama-parse { }; - llama-stack-client = callPackage ../development/python-modules/llama-stack-client { }; llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { };