From 51272ebe943e66bf3df74a8310738abee39b6f55 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 30 Dec 2024 00:21:43 +0100 Subject: [PATCH] python312Packages.chex: temporarily disable tests on python 3.13 --- pkgs/development/python-modules/chex/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/chex/default.nix b/pkgs/development/python-modules/chex/default.nix index d9a4604ff255..d312d1114e28 100644 --- a/pkgs/development/python-modules/chex/default.nix +++ b/pkgs/development/python-modules/chex/default.nix @@ -18,6 +18,7 @@ cloudpickle, dm-tree, pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -51,6 +52,11 @@ buildPythonPackage rec { pytestCheckHook ]; + # AttributeError: module 'unittest' has no attribute 'makeSuite' + # https://github.com/google-deepmind/chex/issues/371 + # TODO: re-enable at next release + doCheck = pythonOlder "3.13"; + meta = { description = "Library of utilities for helping to write reliable JAX code"; homepage = "https://github.com/deepmind/chex";