From cf18f04c3b15c1349fca5370427cacf0e7dd56db Mon Sep 17 00:00:00 2001 From: GraysonTinker Date: Wed, 25 Mar 2026 15:09:19 -0700 Subject: [PATCH] python3Packages.llama-cloud-services: drop --- .../llama-cloud-services/default.nix | 64 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 66 deletions(-) delete mode 100644 pkgs/development/python-modules/llama-cloud-services/default.nix diff --git a/pkgs/development/python-modules/llama-cloud-services/default.nix b/pkgs/development/python-modules/llama-cloud-services/default.nix deleted file mode 100644 index 016731daf7f1..000000000000 --- a/pkgs/development/python-modules/llama-cloud-services/default.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ - lib, - buildPythonPackage, - click, - eval-type-backport, - fetchFromGitHub, - gitUpdater, - llama-cloud, - llama-index-core, - platformdirs, - hatchling, - pydantic, - python-dotenv, -}: - -buildPythonPackage (finalAttrs: { - pname = "llama-cloud-services"; - version = "0.6.94"; - pyproject = true; - - src = fetchFromGitHub { - owner = "run-llama"; - repo = "llama_cloud_services"; - tag = "llama-cloud-services-py%40${finalAttrs.version}"; - hash = "sha256-BjwXdv7ekehYGGnKk0ElVlxmGkmtam9RLECgxfM7lYc="; - }; - - sourceRoot = "${finalAttrs.src.name}/py"; - - pythonRelaxDeps = [ "llama-cloud" ]; - - build-system = [ hatchling ]; - - dependencies = [ - click - eval-type-backport - llama-cloud - llama-index-core - platformdirs - pydantic - python-dotenv - ]; - - # Missing dependency autoevals - doCheck = false; - - pythonImportsCheck = [ "llama_cloud_services" ]; - - # update script sets wrong version - passthru = { - skipBulkUpdate = true; - updateScript = gitUpdater { - rev-prefix = "llama-cloud-services-py@"; - }; - }; - - meta = { - description = "Knowledge Agents and Management in the Cloud"; - homepage = "https://github.com/run-llama/llama_cloud_services"; - changelog = "https://github.com/run-llama/llama_cloud_services/releases/tag/${finalAttrs.src.tag}"; - 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 17b29965bfb1..30c4895720c1 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-cloud-services = throw "'llama-cloud-services' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # Added 2026-03-25 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 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bb6f55ed3da6..9af48fb82e4a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9001,8 +9001,6 @@ self: super: with self; { llama-cloud = callPackage ../development/python-modules/llama-cloud { }; - llama-cloud-services = callPackage ../development/python-modules/llama-cloud-services { }; - llama-cpp-python = callPackage ../development/python-modules/llama-cpp-python { }; llama-index = callPackage ../development/python-modules/llama-index { };