diff --git a/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix b/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix deleted file mode 100644 index aff6d3285119..000000000000 --- a/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - llama-index-core, - llama-parse, - hatchling, -}: - -buildPythonPackage rec { - pname = "llama-index-readers-llama-parse"; - version = "0.6.0"; - pyproject = true; - - src = fetchPypi { - pname = "llama_index_readers_llama_parse"; - inherit version; - hash = "sha256-bghrcDSgAbsCBONDHLHO5bbsE/kwrL+aboLGSu1ysJ4="; - }; - - pythonRelaxDeps = [ "llama-parse" ]; - - build-system = [ hatchling ]; - - propagatedBuildInputs = [ - llama-parse - llama-index-core - ]; - - # Tests are only available in the mono repo - doCheck = false; - - pythonImportsCheck = [ "llama_index.readers.llama_parse" ]; - - meta = { - description = "LlamaIndex Readers Integration for files"; - homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-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 d7c7c135d92d..0aa634344fec 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -291,6 +291,7 @@ mapAliases { 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 + 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 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 f3efa9a9d084..3e6b86a605c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9077,10 +9077,6 @@ self: super: with self; { llama-index-readers-json = callPackage ../development/python-modules/llama-index-readers-json { }; - llama-index-readers-llama-parse = - callPackage ../development/python-modules/llama-index-readers-llama-parse - { }; - llama-index-readers-s3 = callPackage ../development/python-modules/llama-index-readers-s3 { }; llama-index-readers-twitter =