blob: 6a3a0d514ac0906bd1e0674e0093e1850239ce76 (
about) (
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
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchPypi,
httpx,
poetry-core,
pydantic,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-cloud";
version = "0.1.16";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_cloud";
inherit version;
hash = "sha256-/GiyRHGQeVjUhio9selzUT3nbUL1jCnZNbksBssfTj4=";
};
build-system = [ poetry-core ];
dependencies = [
httpx
pydantic
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "llama_cloud" ];
meta = with lib; {
description = "LlamaIndex Python Client";
homepage = "https://pypi.org/project/llama-cloud/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|