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";