lol

python3Packages.langchain-huggingface: 0.1.2 -> 0.2.0

changelog: https://github.com/langchain-ai/langchain/releases/tag/langchain-huggingface%3D%3D0.2.0

diff: https://github.com/langchain-ai/langchain/compare/langchain-huggingface%3D%3D0.1.2...langchain-huggingface%3D%3D0.2.0

Sarah Clark cbb91e84 a91784d6

+8 -6
+8 -6
pkgs/development/python-modules/langchain-huggingface/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - nix-update-script, 6 5 7 6 # build-system 8 - poetry-core, 7 + pdm-backend, 9 8 10 9 # dependencies 11 10 huggingface-hub, ··· 27 26 responses, 28 27 syrupy, 29 28 toml, 29 + 30 + # passthru 31 + nix-update-script, 30 32 }: 31 33 32 34 buildPythonPackage rec { 33 35 pname = "langchain-huggingface"; 34 - version = "0.1.2"; 36 + version = "0.2.0"; 35 37 pyproject = true; 36 38 37 39 src = fetchFromGitHub { 38 40 owner = "langchain-ai"; 39 41 repo = "langchain"; 40 42 tag = "langchain-huggingface==${version}"; 41 - hash = "sha256-ACR+JzKcnYXROGOQe6DlZeqcYd40KlesgXSUOybOT20="; 43 + hash = "sha256-TqxssbqqjJV+/ynM2wo3C1aCV6wy0DsvdEuiTvVqNa8="; 42 44 }; 43 45 44 46 sourceRoot = "${src.name}/libs/partners/huggingface"; 45 47 46 - build-system = [ poetry-core ]; 48 + build-system = [ pdm-backend ]; 47 49 48 50 pythonRelaxDeps = [ 49 51 # Each component release requests the exact latest core. ··· 81 83 passthru.updateScript = nix-update-script { 82 84 extraArgs = [ 83 85 "--version-regex" 84 - "^langchain-huggingface==([0-9.]+)$" 86 + "langchain-huggingface==([0-9.]+)" 85 87 ]; 86 88 }; 87 89