From 936fbd7a56bbfe8a34cd262dd01a5de93b17147a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 1 Sep 2024 16:56:12 +0200 Subject: [PATCH] python312Packages.jaxtyping: 0.2.33 -> 0.2.34 Diff: https://github.com/google/jaxtyping/compare/refs/tags/v0.2.33...v0.2.34 Changelog: https://github.com/patrick-kidger/jaxtyping/releases/tag/v0.2.34 --- .../python-modules/jaxtyping/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/jaxtyping/default.nix b/pkgs/development/python-modules/jaxtyping/default.nix index e28c6aecef3d..e741b66f27d3 100644 --- a/pkgs/development/python-modules/jaxtyping/default.nix +++ b/pkgs/development/python-modules/jaxtyping/default.nix @@ -3,8 +3,14 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, + + # build-system hatchling, + + # dependencies typeguard, + + # tests cloudpickle, equinox, ipython, @@ -18,7 +24,7 @@ let self = buildPythonPackage rec { pname = "jaxtyping"; - version = "0.2.33"; + version = "0.2.34"; pyproject = true; disabled = pythonOlder "3.9"; @@ -27,16 +33,12 @@ let owner = "google"; repo = "jaxtyping"; rev = "refs/tags/v${version}"; - hash = "sha256-CL1EONbjjT3SCAn2o1x+1cgfuYWMEgQwbX9j34t+HGs="; + hash = "sha256-zkB8/+0PmBKDFhj9dd8QZ5Euglm+W3BBUM4dwFUYYW8="; }; - build-system = [ - hatchling - ]; + build-system = [ hatchling ]; - dependencies = [ - typeguard - ]; + dependencies = [ typeguard ]; pythonRelaxDeps = [ "typeguard" ];