python3Packages.chex: 0.1.4 -> 0.1.5

This commit is contained in:
Samuel Ainsworth 2022-10-24 11:04:42 -07:00
parent 51d7d3592d
commit 547d127691

View file

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "chex";
version = "0.1.4";
version = "0.1.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "deepmind";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-FiZElESyOVu1VJxUDNiN6HVADiaubDrGdQHYp2CN8f4=";
hash = "sha256-FYB0IhokM74HBY2wOJYE6xJrHxHHWhDSAZpWFs6HFu0=";
};
propagatedBuildInputs = [
@ -39,6 +39,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# See https://github.com/deepmind/chex/issues/204.
"test_uninspected_checks"
];
meta = with lib; {
description = "Chex is a library of utilities for helping to write reliable JAX code.";
homepage = "https://github.com/deepmind/chex";