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