1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 llama-cloud-services, 6 hatchling, 7}: 8 9buildPythonPackage rec { 10 pname = "llama-parse"; 11 version = "0.6.54"; 12 pyproject = true; 13 14 src = fetchPypi { 15 pname = "llama_parse"; 16 inherit version; 17 hash = "sha256-xwezEVIVXJuuhOMW+reQu8jIX02IJc5e44br632yWPE="; 18 }; 19 20 build-system = [ hatchling ]; 21 22 dependencies = [ llama-cloud-services ]; 23 24 pythonImportsCheck = [ "llama_parse" ]; 25 26 meta = with lib; { 27 description = "Parse files into RAG-Optimized formats"; 28 homepage = "https://pypi.org/project/llama-parse/"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ fab ]; 31 }; 32}