depot/third_party/nixpkgs/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

46 lines
1,001 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
llama-parse,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-index-readers-llama-parse";
version = "0.1.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_readers_llama_parse";
inherit version;
hash = "sha256-BPLc+7D7h85wiQ9aL0+JlB15vmqBi0NzjwU1YOS0Uc8=";
};
pythonRelaxDeps = [ "llama-parse" ];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
llama-parse
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 ];
};
}