Files
nixpkgs/pkgs/development/python-modules/llama-cloud/default.nix
T
Martin Weinelt 8e10d67e3e python3Packages.llama-cloud: 0.1.34 -> 0.1.37
This commit was automatically generated using update-python-libraries.
2025-08-09 19:01:29 +02:00

43 lines
738 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
httpx,
poetry-core,
pydantic,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-cloud";
version = "0.1.37";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_cloud";
inherit version;
hash = "sha256-ttYuc4bRqoWQW34/fBmkBpS+VMFZZmi86qRWzYTt5mY=";
};
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 ];
};
}