biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / llama-index-vector-stores-chroma / default.nix
blob6ab0835a135c0acdf9a316a83ce16f30f5e572de
2   lib,
3   buildPythonPackage,
4   chromadb,
5   fetchPypi,
6   llama-index-core,
7   pythonOlder,
8   poetry-core,
9 }:
11 buildPythonPackage rec {
12   pname = "llama-index-vector-stores-chroma";
13   version = "0.2.0";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "llama_index_vector_stores_chroma";
20     inherit version;
21     hash = "sha256-n6fGNgXB4pbhea1e5QT0Co/sVnd8r3L5+pVCut5U2Uw=";
22   };
24   build-system = [ poetry-core ];
26   dependencies = [
27     chromadb
28     llama-index-core
29   ];
31   pythonImportsCheck = [ "llama_index.vector_stores.chroma" ];
33   meta = with lib; {
34     description = "LlamaIndex Vector Store Integration for Chroma";
35     homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-chroma";
36     license = licenses.mit;
37     maintainers = with maintainers; [ fab ];
38   };