Unverified Commit 034253ed authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #299035 from fabaff/llama-index-readers-llama-parse-bump

python312Packages.llama-index-readers-llama-parse: 0.10.20 -> 0.1.4
parents ca5984e4 b357ca71
Loading
Loading
Loading
Loading
+25 −4
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, llama-index-core
, llama-parse
, poetry-core
, pythonOlder
, pythonRelaxDepsHook
}:

buildPythonPackage rec {
  pname = "llama-index-readers-llama-parse";
  version = "0.1.4";
  pyproject = true;

  inherit (llama-index-core) version src meta;
  disabled = pythonOlder "3.8";

  pyproject = true;
  src = fetchPypi {
    pname = "llama_index_readers_llama_parse";
    inherit version;
    hash = "sha256-eGCLGTyBiJSu/u4KowPwK3+A8uTK8Thmwv07CxAj4sA=";
  };

  sourceRoot = "${src.name}/llama-index-integrations/readers/${pname}";
  pythonRelaxDeps = [
    "llama-parse"
  ];

  nativeBuildInputs = [
    poetry-core
    pythonRelaxDepsHook
  ];

  propagatedBuildInputs = [
@@ -24,7 +35,17 @@ buildPythonPackage rec {
    llama-index-core
  ];

  # Tests are only available in the mono repo
  doCheck = false;

  pythonImportsCheck = [
    "llama_index.readers.llama_parse"
  ];

  meta = with lib; {
    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 = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}