From 0261bc8f135bde924578fc7b46c8c5afd052859a Mon Sep 17 00:00:00 2001 From: Stephen Huan Date: Thu, 13 Mar 2025 14:10:22 -0400 Subject: [PATCH 1/3] python3Packages.wandb: move pydantic to dependencies --- pkgs/development/python-modules/wandb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index d724cc4afd6b..32fd5a5b7549 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -25,6 +25,7 @@ platformdirs, protobuf, psutil, + pydantic, pyyaml, requests, sentry-sdk_2, @@ -56,7 +57,6 @@ parameterized, pillow, plotly, - pydantic, pyfakefs, pyte, pytest-asyncio, @@ -184,6 +184,7 @@ buildPythonPackage rec { platformdirs protobuf psutil + pydantic pyyaml requests sentry-sdk_2 @@ -220,7 +221,6 @@ buildPythonPackage rec { parameterized pillow plotly - pydantic pyfakefs pyte pytest-asyncio From b7024f4945dd3f5e3fca633900c5696bc7577bd0 Mon Sep 17 00:00:00 2001 From: Stephen Huan Date: Thu, 13 Mar 2025 14:09:37 -0400 Subject: [PATCH 2/3] python3Packages.wandb: add eval-type-backport to dependencies --- pkgs/development/python-modules/wandb/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index 32fd5a5b7549..b9405d748218 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -32,6 +32,7 @@ setproctitle, setuptools, pythonOlder, + eval-type-backport, typing-extensions, # tests @@ -192,6 +193,9 @@ buildPythonPackage rec { # setuptools is necessary since pkg_resources is required at runtime. setuptools ] + ++ lib.optionals (pythonOlder "3.10") [ + eval-type-backport + ] ++ lib.optionals (pythonOlder "3.12") [ typing-extensions ]; From 0f9de7befda169fe8ef42ee75273b9540bde3997 Mon Sep 17 00:00:00 2001 From: Stephen Huan Date: Thu, 13 Mar 2025 14:20:31 -0400 Subject: [PATCH 3/3] python3Packages.wandb: 0.19.6 -> 0.19.8 --- pkgs/development/python-modules/wandb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index b9405d748218..91f0c897aa6a 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -76,12 +76,12 @@ }: let - version = "0.19.6"; + version = "0.19.8"; src = fetchFromGitHub { owner = "wandb"; repo = "wandb"; tag = "v${version}"; - hash = "sha256-snyr0IlE4otk1ctWUrJEFAmHYsXe+k6qULCaO3aW0e4="; + hash = "sha256-hveMyGeu9RhdtWMbV/4GQ4KUNfjSt0CKyW7Yx8QtlLM="; }; gpu-stats = rustPlatform.buildRustPackage {