We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a91aa2 + 51272eb commit 64388c3Copy full SHA for 64388c3
pkgs/development/python-modules/chex/default.nix
@@ -18,6 +18,7 @@
18
cloudpickle,
19
dm-tree,
20
pytestCheckHook,
21
+ pythonOlder,
22
}:
23
24
buildPythonPackage rec {
@@ -51,6 +52,11 @@ buildPythonPackage rec {
51
52
pytestCheckHook
53
];
54
55
+ # AttributeError: module 'unittest' has no attribute 'makeSuite'
56
+ # https://github.com/google-deepmind/chex/issues/371
57
+ # TODO: re-enable at next release
58
+ doCheck = pythonOlder "3.13";
59
+
60
meta = {
61
description = "Library of utilities for helping to write reliable JAX code";
62
homepage = "https://github.com/deepmind/chex";
0 commit comments