Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / llamaindex-py-client / default.nix
blob46af937a382cebc3166204bee530f92dcfe48f06
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   httpx,
6   poetry-core,
7   pydantic,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "llamaindex-py-client";
13   version = "0.1.18";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llamaindex_py_client";
20     inherit version;
21     hash = "sha256-CR7kmpJZLjiUd3reElFsITcJP51kQaVJ9AZGGRfOm34=";
22   };
24   build-system = [ poetry-core ];
26   dependencies = [
27     httpx
28     pydantic
29   ];
31   # Module has no tests
32   doCheck = false;
34   pythonImportsCheck = [ "llama_index_client" ];
36   meta = with lib; {
37     description = "Client for LlamaIndex";
38     homepage = "https://pypi.org/project/llamaindex-py-client/";
39     license = licenses.mit;
40     maintainers = with maintainers; [ fab ];
41   };