Files
Fabian Affolter fe4c7b0f3a python313Packages.llama-index-vector-stores-chroma: remove disabled
Remove restriction for Python version older than 3.8.
2026-01-04 17:25:30 +01:00

37 lines
831 B
Nix

{
lib,
buildPythonPackage,
chromadb,
fetchPypi,
hatchling,
llama-index-core,
}:
buildPythonPackage rec {
pname = "llama-index-vector-stores-chroma";
version = "0.5.5";
pyproject = true;
src = fetchPypi {
pname = "llama_index_vector_stores_chroma";
inherit version;
hash = "sha256-gjhlBpvOpNnekVECca4DzW6o6wEGpbXqQ//OwD7Cpwg=";
};
build-system = [ hatchling ];
dependencies = [
chromadb
llama-index-core
];
pythonImportsCheck = [ "llama_index.vector_stores.chroma" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}