Files
nixpkgs/pkgs/development/python-modules/llama-parse/default.nix
2025-07-12 17:03:07 +02:00

38 lines
713 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
llama-cloud-services,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-parse";
version = "0.6.46";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_parse";
inherit version;
hash = "sha256-YFQ/90Es+9JwNSLlmtuJE+2pZr5+keOVvxFNY1T05e8=";
};
build-system = [ poetry-core ];
dependencies = [
llama-cloud-services
];
pythonImportsCheck = [ "llama_parse" ];
meta = with lib; {
description = "Parse files into RAG-Optimized formats";
homepage = "https://pypi.org/project/llama-parse/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}