From f5c1b5b4552e7cdad7285d34129be529a5ab129b Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 11 Dec 2024 13:58:45 +0100 Subject: [PATCH] python312Packages.chex: 0.1.87 -> 0.1.88 Diff: https://github.com/deepmind/chex/compare/refs/tags/v0.1.87...v0.1.88 Changelog: https://github.com/google-deepmind/chex/releases/tag/v0.1.88 --- pkgs/development/python-modules/chex/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/chex/default.nix b/pkgs/development/python-modules/chex/default.nix index 3f52a6ac3311..d9a4604ff255 100644 --- a/pkgs/development/python-modules/chex/default.nix +++ b/pkgs/development/python-modules/chex/default.nix @@ -22,14 +22,14 @@ buildPythonPackage rec { pname = "chex"; - version = "0.1.87"; + version = "0.1.88"; pyproject = true; src = fetchFromGitHub { owner = "deepmind"; repo = "chex"; - rev = "refs/tags/v${version}"; - hash = "sha256-TPh7XLWHk0y/VLXxHLANUiDmfveHPeMLks9QKf16doo="; + tag = "v${version}"; + hash = "sha256-umRq+FZwyx1hz839ZibRTEFKjbBugrfUJuE8PagjqI4="; }; build-system = [ setuptools ]; @@ -52,7 +52,7 @@ buildPythonPackage rec { ]; meta = { - description = "Chex is a library of utilities for helping to write reliable JAX code"; + description = "Library of utilities for helping to write reliable JAX code"; homepage = "https://github.com/deepmind/chex"; changelog = "https://github.com/google-deepmind/chex/releases/tag/v${version}"; license = lib.licenses.asl20;