python312Packages.langchain-huggingface: correct to 0.1.2

This commit is contained in:
sarahec 2024-11-01 21:18:56 -07:00
parent d5ab466540
commit 3e88c02357

View File

@ -30,13 +30,13 @@
buildPythonPackage rec {
pname = "langchain-huggingface";
version = "0.3.6";
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "langchain-ai";
repo = "langchain";
rev = "refs/tags/langchain-core==${version}";
rev = "refs/tags/langchain-huggingface==${version}";
hash = "sha256-ACR+JzKcnYXROGOQe6DlZeqcYd40KlesgXSUOybOT20=";
};
@ -80,6 +80,9 @@ buildPythonPackage rec {
description = "An integration package connecting Huggingface related classes and LangChain";
homepage = "https://github.com/langchain-ai/langchain/tree/master/libs/partners/huggingface";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
maintainers = with lib.maintainers; [
natsukium
sarahec
];
};
}