python3Packages.wandb: 0.19.6 -> 0.19.8; update dependencies (#389616)

authored by Gaétan Lepage and committed by GitHub 626f9686 3b7a5abd

+8 -4
+8 -4
pkgs/development/python-modules/wandb/default.nix
··· 25 platformdirs, 26 protobuf, 27 psutil, 28 pyyaml, 29 requests, 30 sentry-sdk_2, 31 setproctitle, 32 setuptools, 33 pythonOlder, 34 typing-extensions, 35 36 # tests ··· 56 parameterized, 57 pillow, 58 plotly, 59 - pydantic, 60 pyfakefs, 61 pyte, 62 pytest-asyncio, ··· 75 }: 76 77 let 78 - version = "0.19.6"; 79 src = fetchFromGitHub { 80 owner = "wandb"; 81 repo = "wandb"; 82 tag = "v${version}"; 83 - hash = "sha256-snyr0IlE4otk1ctWUrJEFAmHYsXe+k6qULCaO3aW0e4="; 84 }; 85 86 gpu-stats = rustPlatform.buildRustPackage { ··· 184 platformdirs 185 protobuf 186 psutil 187 pyyaml 188 requests 189 sentry-sdk_2 190 setproctitle 191 # setuptools is necessary since pkg_resources is required at runtime. 192 setuptools 193 ] 194 ++ lib.optionals (pythonOlder "3.12") [ 195 typing-extensions ··· 220 parameterized 221 pillow 222 plotly 223 - pydantic 224 pyfakefs 225 pyte 226 pytest-asyncio
··· 25 platformdirs, 26 protobuf, 27 psutil, 28 + pydantic, 29 pyyaml, 30 requests, 31 sentry-sdk_2, 32 setproctitle, 33 setuptools, 34 pythonOlder, 35 + eval-type-backport, 36 typing-extensions, 37 38 # tests ··· 58 parameterized, 59 pillow, 60 plotly, 61 pyfakefs, 62 pyte, 63 pytest-asyncio, ··· 76 }: 77 78 let 79 + version = "0.19.8"; 80 src = fetchFromGitHub { 81 owner = "wandb"; 82 repo = "wandb"; 83 tag = "v${version}"; 84 + hash = "sha256-hveMyGeu9RhdtWMbV/4GQ4KUNfjSt0CKyW7Yx8QtlLM="; 85 }; 86 87 gpu-stats = rustPlatform.buildRustPackage { ··· 185 platformdirs 186 protobuf 187 psutil 188 + pydantic 189 pyyaml 190 requests 191 sentry-sdk_2 192 setproctitle 193 # setuptools is necessary since pkg_resources is required at runtime. 194 setuptools 195 + ] 196 + ++ lib.optionals (pythonOlder "3.10") [ 197 + eval-type-backport 198 ] 199 ++ lib.optionals (pythonOlder "3.12") [ 200 typing-extensions ··· 225 parameterized 226 pillow 227 plotly 228 pyfakefs 229 pyte 230 pytest-asyncio