diff options
| author | Samuel Ainsworth <skainsworth@gmail.com> | 2022-10-24 11:04:42 -0700 |
|---|---|---|
| committer | Samuel Ainsworth <skainsworth@gmail.com> | 2022-10-24 11:04:42 -0700 |
| commit | 547d127691be2d834bc10e979faf6c1d2cc15edd (patch) | |
| tree | 55702989978c89bcd743e25a040bbc7c3f94dbd9 /pkgs/development/python-modules/chex | |
| parent | python3Packages.dm-tree: unstable-2021-12-20 -> 0.1.7 (diff) | |
| download | nixpkgs-547d127691be2d834bc10e979faf6c1d2cc15edd.tar.gz | |
python3Packages.chex: 0.1.4 -> 0.1.5
Diffstat (limited to 'pkgs/development/python-modules/chex')
| -rw-r--r-- | pkgs/development/python-modules/chex/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/chex/default.nix b/pkgs/development/python-modules/chex/default.nix index 79eeb9319973..cad84146c483 100644 --- a/pkgs/development/python-modules/chex/default.nix +++ b/pkgs/development/python-modules/chex/default.nix @@ -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"; |
