python312Packages.chex: 0.1.86 -> 0.1.87 (#345526)

This commit is contained in:
h7x4 2024-10-01 00:51:09 +02:00 committed by GitHub
commit ebc6ba40ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,40 +1,43 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
absl-py,
cloudpickle,
dm-tree,
jax,
jaxlib,
numpy,
pytestCheckHook,
toolz,
typing-extensions,
# tests
cloudpickle,
dm-tree,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "chex";
version = "0.1.86";
version = "0.1.87";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "deepmind";
repo = "chex";
rev = "refs/tags/v${version}";
hash = "sha256-Z5Ns4fG5pC99I4xdGjDMKX6YZpTtd1y0TWcIOtr7dug=";
hash = "sha256-TPh7XLWHk0y/VLXxHLANUiDmfveHPeMLks9QKf16doo=";
};
build-system = [ setuptools ];
dependencies = [
absl-py
jaxlib
jax
jaxlib
numpy
toolz
typing-extensions
@ -48,11 +51,11 @@ buildPythonPackage rec {
pytestCheckHook
];
meta = with lib; {
meta = {
description = "Chex is a library of utilities for helping to write reliable JAX code";
homepage = "https://github.com/deepmind/chex";
changelog = "https://github.com/google-deepmind/chex/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ndl ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ndl ];
};
}