Merge pull request #304935 from r-ryantm/auto-update/python311Packages.llama-index-cli

python311Packages.llama-index-cli: 0.1.11 -> 0.1.12
This commit is contained in:
Fabian Affolter 2024-04-18 10:48:43 +02:00 committed by GitHub
commit 24e82cae76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 18 deletions

View File

@ -1,17 +1,18 @@
{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, llama-index-embeddings-openai
, llama-index-llms-openai
, llama-index-vector-stores-chroma
, poetry-core
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
llama-index-embeddings-openai,
llama-index-llms-openai,
llama-index-vector-stores-chroma,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-index-cli";
version = "0.1.11";
version = "0.1.12";
pyproject = true;
disabled = pythonOlder "3.8";
@ -19,12 +20,10 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "llama_index_cli";
inherit version;
hash = "sha256-XecH4SWqh31wxh2nDMRP6nKp9623f0E7Ufc7He/911A=";
hash = "sha256-PPH3BsPGnGsaqwf8p/qtOVnbFwmAjv1QSRtmnTiwtYA=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
llama-index-core
@ -36,9 +35,7 @@ buildPythonPackage rec {
# Tests are only available in the mono repo
doCheck = false;
pythonImportsCheck = [
"llama_index.cli"
];
pythonImportsCheck = [ "llama_index.cli" ];
meta = with lib; {
description = "LlamaIndex CLI";
@ -46,5 +43,4 @@ buildPythonPackage rec {
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}