From 2c5088a6d82c42a5426a2e462311c0ff4fa6994e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Aug 2023 17:21:13 +0200 Subject: [PATCH] python311Packages.langsmith: 0.0.14 -> 0.0.24 Diff: https://github.com/langchain-ai/langchainplus-sdk/compare/refs/tags/v0.0.14...v0.0.24 Changelog: https://github.com/langchain-ai/langsmith-sdk/releases/tag/v0.0.24 --- .../python-modules/langsmith/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/langsmith/default.nix b/pkgs/development/python-modules/langsmith/default.nix index f54203f6ac09..7916c3e2cd3d 100644 --- a/pkgs/development/python-modules/langsmith/default.nix +++ b/pkgs/development/python-modules/langsmith/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "langsmith"; - version = "0.0.14"; + version = "0.0.24"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -19,10 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "langchain-ai"; repo = "langchainplus-sdk"; - # there are no correct tags - # https://github.com/langchain-ai/langchainplus-sdk/issues/105 - rev = "092f67222e4beabca0f51ba03f1ee028f916da63"; - hash = "sha256-U8fs16Uq80EB7Ey5YuQhUKKI9DOXJWlabM5JdoDnWP0="; + rev = "refs/tags/v${version}"; + hash = "sha256-Uv6zzSWs+Fvb0ztwgkbkZcaNJOFpt8pWh88HZHsTris="; }; sourceRoot = "${src.name}/python"; @@ -42,11 +40,13 @@ buildPythonPackage rec { ]; disabledTests = [ - # these tests require network access + # These tests require network access "integration_tests" ]; - pythonImportsCheck = [ "langsmith" ]; + pythonImportsCheck = [ + "langsmith" + ]; meta = with lib; { description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform";