lol

python312Packages.treescope: 0.1.8 -> 0.1.9

Diff: https://github.com/google-deepmind/treescope/compare/refs/tags/v0.1.8...v0.1.9

Changelog: https://github.com/google-deepmind/treescope/releases/tag/v0.1.9

+6 -2
+6 -2
pkgs/development/python-modules/treescope/default.nix
··· 17 17 # tests 18 18 absl-py, 19 19 jaxlib, 20 + omegaconf, 21 + pydantic, 20 22 pytestCheckHook, 21 23 torch, 22 24 }: 23 25 24 26 buildPythonPackage rec { 25 27 pname = "treescope"; 26 - version = "0.1.8"; 28 + version = "0.1.9"; 27 29 pyproject = true; 28 30 29 31 src = fetchFromGitHub { 30 32 owner = "google-deepmind"; 31 33 repo = "treescope"; 32 34 tag = "v${version}"; 33 - hash = "sha256-/rSQUmmfMPP7sZ6avd9bc4lSW/sHLXLEKKCJdXjBTB4="; 35 + hash = "sha256-rLrsG7psY3xkuvNtdRULiMWKzIiWZpJ7TVJhwTNGXRQ="; 34 36 }; 35 37 36 38 build-system = [ flit-core ]; ··· 51 53 absl-py 52 54 jax 53 55 jaxlib 56 + omegaconf 57 + pydantic 54 58 pytestCheckHook 55 59 torch 56 60 ];