python3Packages.llama-index-cli: 0.5.3 -> 0.5.5 (#497127)

This commit is contained in:
Fabian Affolter 2026-03-07 13:36:11 +00:00 committed by GitHub
commit 212d3fbebf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,15 +9,15 @@
llama-index-vector-stores-chroma,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "llama-index-cli";
version = "0.5.3";
version = "0.5.5";
pyproject = true;
src = fetchPypi {
pname = "llama_index_cli";
inherit version;
hash = "sha256-668554Xvv6jVDYN/YMsPlRJcBL9z7R+SCSoqX1Bhcvg=";
inherit (finalAttrs) version;
hash = "sha256-ot5aIvZ19gkIyM0f2HPxMs8r/fNGL6ee9fvmuVcnows=";
};
build-system = [ hatchling ];
@ -40,4 +40,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})