Revert "python3Packages.langgraph: 0.2.56 -> 2.0.13"

This reverts commit bd16b60510.
This commit is contained in:
Robert Schütz
2025-02-06 21:38:23 -08:00
parent a01189f647
commit 6a52de1fff
@@ -35,14 +35,14 @@
buildPythonPackage rec {
pname = "langgraph";
version = "2.0.13";
version = "0.2.56";
pyproject = true;
src = fetchFromGitHub {
owner = "langchain-ai";
repo = "langgraph";
tag = "checkpointpostgres==${version}";
hash = "sha256-Vz2ZoikEZuMvt3j9tvBIcXCwWSrCV8MI7x9PIHodl8Y=";
tag = version;
hash = "sha256-X/IMNEmggu9bSJFUaTohbFYxGZBguf+eFb3ObmQGplk=";
};
postgresqlTestSetupPost = ''
@@ -119,7 +119,7 @@ buildPythonPackage rec {
meta = {
description = "Build resilient language agents as graphs";
homepage = "https://github.com/langchain-ai/langgraph";
changelog = "https://github.com/langchain-ai/langgraph/releases/tag/${src.tag}";
changelog = "https://github.com/langchain-ai/langgraph/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sarahec ];
};