python311Packages.llama-index-vector-stores-chroma: 0.1.4 -> 0.1.6

This commit is contained in:
Fabian Affolter 2024-03-26 09:35:47 +01:00
parent 9a143ea120
commit 59c89b4b86

View File

@ -1,41 +1,42 @@
{ lib
, buildPythonPackage
, chromadb
, fetchFromGitHub
, fetchPypi
, llama-index-core
, onnxruntime
, pythonOlder
, poetry-core
, pythonRelaxDepsHook
, tokenizers
}:
buildPythonPackage rec {
pname = "llama-index-vector-stores-chroma";
inherit (llama-index-core) version src meta;
version = "0.1.6";
pyproject = true;
sourceRoot = "${src.name}/llama-index-integrations/vector_stores/${pname}";
disabled = pythonOlder "3.8";
pythonRelaxDeps = [
"onnxruntime"
"tokenizers"
];
src = fetchPypi {
pname = "llama_index_vector_stores_chroma";
inherit version;
hash = "sha256-bf89ydecQDn6Rs1Sjl5Lbe1kc+XvYyQkE0SRAH2k69s=";
};
nativeBuildInputs = [
build-system = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
dependencies = [
chromadb
llama-index-core
onnxruntime
tokenizers
];
pythonImportsCheck = [
"llama_index.vector_stores.chroma"
];
meta = with lib; {
description = "LlamaIndex Vector Store Integration for Chroma";
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-chroma";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}