Skip to content

Commit e0a6021

Browse files
committed
1 parent e9c4417 commit e0a6021

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@
88
poetry-core,
99

1010
# dependencies
11+
httpx,
1112
orjson,
1213
pydantic,
1314
requests,
15+
requests-toolbelt,
1416

1517
# tests
1618
anthropic,
1719
dataclasses-json,
1820
fastapi,
1921
freezegun,
20-
httpx,
2122
instructor,
2223
pytest-asyncio,
2324
pytestCheckHook,
@@ -27,14 +28,14 @@
2728

2829
buildPythonPackage rec {
2930
pname = "langsmith";
30-
version = "0.1.129";
31+
version = "0.1.137";
3132
pyproject = true;
3233

3334
src = fetchFromGitHub {
3435
owner = "langchain-ai";
3536
repo = "langsmith-sdk";
3637
rev = "refs/tags/v${version}";
37-
hash = "sha256-GIWDGr6zd/YaSgcSrIw0a1Ul9RxdmtJBMTEbGapudtw=";
38+
hash = "sha256-nR3fb3MHBxFvI4qrsTpElLWTDUESZ8J78GsVoCGTIyQ=";
3839
};
3940

4041
sourceRoot = "${src.name}/python";
@@ -44,17 +45,18 @@ buildPythonPackage rec {
4445
build-system = [ poetry-core ];
4546

4647
dependencies = [
48+
httpx
4749
orjson
4850
pydantic
4951
requests
52+
requests-toolbelt
5053
];
5154

5255
nativeCheckInputs = [
5356
anthropic
5457
dataclasses-json
5558
fastapi
5659
freezegun
57-
httpx
5860
instructor
5961
pytest-asyncio
6062
pytestCheckHook

0 commit comments

Comments
 (0)