python311Packages.llamaindex-py-client: init at 0.1.13

Client for LlamaIndex

https://pypi.org/project/llamaindex-py-client/
This commit is contained in:
Fabian Affolter 2024-02-25 14:10:46 +01:00
parent c29273470b
commit 51ecaa3f46
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, httpx
, poetry-core
, pydantic
, pythonOlder
}:
buildPythonPackage rec {
pname = "llamaindex-py-client";
version = "0.1.13";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llamaindex_py_client";
inherit version;
hash = "sha256-O9m0Ne4KeBceukEt6lZ02BPrW/NuV308fH6Q7cVJANk=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
httpx
pydantic
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"llama_index_client"
];
meta = with lib; {
description = "Client for LlamaIndex";
homepage = "https://pypi.org/project/llamaindex-py-client/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6670,6 +6670,8 @@ self: super: with self; {
lizard = callPackage ../development/python-modules/lizard { };
llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { };
llfuse = callPackage ../development/python-modules/llfuse {
inherit (pkgs) fuse;
};