python312Packages.llama-cloud: init at 0.0.11

LlamaIndex Python Client

https://pypi.org/project/llama-cloud/
This commit is contained in:
Fabian Affolter 2024-08-04 15:05:52 +02:00
parent b40115b074
commit 4b1d2a21c4
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
httpx,
poetry-core,
pydantic,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-cloud";
version = "0.0.11";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_cloud";
inherit version;
hash = "sha256-EAiCtSiJIGUhFDbaBIJS1X7KFNhoPS/eb4nusglQrBg=";
};
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 ];
};
}

View File

@ -7111,6 +7111,8 @@ self: super: with self; {
lizard = callPackage ../development/python-modules/lizard { };
llama-cloud = callPackage ../development/python-modules/llama-cloud { };
llama-index = callPackage ../development/python-modules/llama-index { };
llama-index-agent-openai = callPackage ../development/python-modules/llama-index-agent-openai { };