mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python312Packages.llama-cloud: init at 0.0.11
LlamaIndex Python Client https://pypi.org/project/llama-cloud/
This commit is contained in:
parent
b40115b074
commit
4b1d2a21c4
42
pkgs/development/python-modules/llama-cloud/default.nix
Normal file
42
pkgs/development/python-modules/llama-cloud/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user