Gaetan Lepage 2024-06-10 14:57:13 +02:00
parent 20b8a4d263
commit 6de18dbe0f

View file

@ -29,7 +29,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "langchain-community"; pname = "langchain-community";
version = "0.2.1"; version = "0.2.4";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -38,7 +38,7 @@ buildPythonPackage rec {
owner = "langchain-ai"; owner = "langchain-ai";
repo = "langchain"; repo = "langchain";
rev = "langchain-community==${version}"; rev = "langchain-community==${version}";
hash = "sha256-h8ZJiQYmyvzaRrEVNS7SamJTq4zY7J1IgYdQiVBFh4I="; hash = "sha256-rqlYaSfDZIQHCndsnydeR1oeVZNIOH6NAgXeOSdBF5A=";
}; };
sourceRoot = "${src.name}/libs/community"; sourceRoot = "${src.name}/libs/community";
@ -83,11 +83,13 @@ buildPythonPackage rec {
updateScript = langchain-core.updateScript; updateScript = langchain-core.updateScript;
}; };
meta = with lib; { __darwinAllowLocalNetworking = true;
meta = {
description = "Community contributed LangChain integrations"; description = "Community contributed LangChain integrations";
homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/community"; homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/community";
changelog = "https://github.com/langchain-ai/langchain/releases/tag/v${version}"; changelog = "https://github.com/langchain-ai/langchain/releases/tag/v${version}";
license = licenses.mit; license = lib.licenses.mit;
maintainers = with maintainers; [ natsukium ]; maintainers = with lib.maintainers; [ natsukium ];
}; };
} }