Commit 4dd4389e authored by GraysonTinker's avatar GraysonTinker
Browse files

python3Packages.llama-parse: drop

parent e7990145
Loading
Loading
Loading
Loading
+0 −35
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };