nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 653 B view raw
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.90"; 12 pyproject = true; 13 14 src = fetchPypi { 15 pname = "llama_parse"; 16 inherit version; 17 hash = "sha256-7OqBGrj6lKe4Y90NNYQRPGMFRRM2i64ix6LYtnzPOu0="; 18 }; 19 20 build-system = [ hatchling ]; 21 22 dependencies = [ llama-cloud-services ]; 23 24 pythonImportsCheck = [ "llama_parse" ]; 25 26 meta = { 27 description = "Parse files into RAG-Optimized formats"; 28 homepage = "https://pypi.org/project/llama-parse/"; 29 license = lib.licenses.mit; 30 maintainers = with lib.maintainers; [ fab ]; 31 }; 32}