Skip to content

Commit b29165b

Browse files
authored
python3Packages.{langgraph->0.2.39, langgraph-sdk->0.1.33,langgraph-checkpoint->2.0.1, langgraph-checkpoint-postgres->2.0.1} (#350773)
2 parents 7ecdd52 + 5473aa1 commit b29165b

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
buildPythonPackage rec {
2020
pname = "langgraph-checkpoint-postgres";
21-
version = "2.0.0";
21+
version = "2.0.1";
2222
pyproject = true;
2323

2424
disabled = pythonOlder "3.10";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
2727
owner = "langchain-ai";
2828
repo = "langgraph";
2929
rev = "refs/tags/checkpointpostgres==${version}";
30-
hash = "sha256-piBWr6F1YWML9D8+Bk4KvReQJhgb1Z7Xf5q8bcVUeEQ=";
30+
hash = "sha256-5gKgCd0hl2iPLBfh94n8kMojECknhd0r+W4gt3m4g+M=";
3131
};
3232

3333
postgresqlTestSetupPost = ''

pkgs/development/python-modules/langgraph-checkpoint/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
buildPythonPackage rec {
1717
pname = "langgraph-checkpoint";
18-
version = "2.0.0";
18+
version = "2.0.1";
1919
pyproject = true;
2020

2121
disabled = pythonOlder "3.9";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
2424
owner = "langchain-ai";
2525
repo = "langgraph";
2626
rev = "refs/tags/checkpoint==${version}";
27-
hash = "sha256-LBIQyDWKmT89OgYUk3LFIZ5VDXX9KQXFkR9A8XHOCBQ=";
27+
hash = "sha256-BDuc6PpziOFIsPpDets7OM2Z+VJ6ekxKpkAuoavDdmI=";
2828
};
2929

3030
sourceRoot = "${src.name}/libs/checkpoint";

pkgs/development/python-modules/langgraph-sdk/default.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717

1818
buildPythonPackage rec {
1919
pname = "langgraph-sdk";
20-
version = "0.1.32";
20+
version = "0.1.33";
2121
pyproject = true;
2222

2323
src = fetchFromGitHub {
2424
owner = "langchain-ai";
2525
repo = "langgraph";
2626
rev = "refs/tags/sdk==${version}";
27-
hash = "sha256-qOxtrRbdK0M4aFWJX0SFn7U27rvAyqu53iCbYZX3s8A=";
27+
hash = "sha256-oSkF82AvIycGaw0Pb2tldtvjyG9HkXPlSE6onRbDDPE=";
2828
};
2929

3030
sourceRoot = "${src.name}/libs/sdk-py";
@@ -40,12 +40,11 @@ buildPythonPackage rec {
4040
pythonImportsCheck = [ "langgraph_sdk" ];
4141

4242
passthru = {
43-
# python3Packages.langgraph-sdk depends on python3Packages.langgraph. langgraph-cli is independent of both.
4443
updateScript = writeScript "update.sh" ''
4544
#!/usr/bin/env nix-shell
4645
#!nix-shell -i bash -p nix-update
4746
48-
set -eu -o pipefail
47+
set -eu -o pipefail +e
4948
nix-update --commit --version-regex '(.*)' python3Packages.langgraph
5049
nix-update --commit --version-regex 'sdk==(.*)' python3Packages.langgraph-sdk
5150
nix-update --commit --version-regex 'checkpoint==(.*)' python3Packages.langgraph-checkpoint

pkgs/development/python-modules/langgraph/default.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# dependencies
1111
langchain-core,
1212
langgraph-checkpoint,
13+
langgraph-sdk,
1314

1415
# tests
1516
aiosqlite,
@@ -29,21 +30,18 @@
2930
syrupy,
3031
postgresql,
3132
postgresqlTestHook,
32-
33-
# passthru
34-
langgraph-sdk,
3533
}:
3634

3735
buildPythonPackage rec {
3836
pname = "langgraph";
39-
version = "0.2.34";
37+
version = "0.2.39";
4038
pyproject = true;
4139

4240
src = fetchFromGitHub {
4341
owner = "langchain-ai";
4442
repo = "langgraph";
4543
rev = "refs/tags/${version}";
46-
hash = "sha256-5Suyj6pEslgR383MkYGGz7IC2A0A++02YooZmi8YtyM=";
44+
hash = "sha256-VZRGlE3MSOzur1TWC6swQjf/o5M62LsYncx2g8dtS+o=";
4745
};
4846

4947
postgresqlTestSetupPost = ''
@@ -58,6 +56,7 @@ buildPythonPackage rec {
5856
dependencies = [
5957
langchain-core
6058
langgraph-checkpoint
59+
langgraph-sdk
6160
];
6261

6362
pythonImportsCheck = [ "langgraph" ];

0 commit comments

Comments
 (0)