nixpkgs/pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix
Fabian Affolter b357ca71c3 python312Packages.llama-index-readers-llama-parse: 0.10.20 -> 0.1.4
Switch to PyPI as source. The release cycle doesn't match with the
mono repo.
2024-03-25 23:33:36 +01:00

52 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, llama-parse
, poetry-core
, pythonOlder
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "llama-index-readers-llama-parse";
version = "0.1.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_readers_llama_parse";
inherit version;
hash = "sha256-eGCLGTyBiJSu/u4KowPwK3+A8uTK8Thmwv07CxAj4sA=";
};
pythonRelaxDeps = [
"llama-parse"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
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 ];
};
}