7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
chromadb,
|
|
langchain-core,
|
|
numpy,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "langchain-chroma";
|
|
version = "0.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "langchain-ai";
|
|
repo = "langchain";
|
|
rev = "refs/tags/langchain-chroma==${version}";
|
|
hash = "sha256-pU7H8OYXa+JjdkSO36xESPI6r3xA+9cFXxeJnfpYuHc=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/libs/partners/chroma";
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
pythonRelaxDeps = [ "chromadb" ];
|
|
|
|
dependencies = [
|
|
langchain-core
|
|
chromadb
|
|
numpy
|
|
];
|
|
|
|
pythonImportsCheck = [ "langchain_chroma" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
passthru = {
|
|
inherit (langchain-core) updateScript;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/langchain-ai/langchain/releases/tag/langchain-chroma==${version}";
|
|
description = "Integration package connecting Chroma and LangChain";
|
|
homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/partners/chroma";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ natsukium ];
|
|
};
|
|
}
|