python3Packages.chex: 0.1.90 -> 0.1.91

Diff: https://github.com/deepmind/chex/compare/v0.1.90...v0.1.91

Changelog: https://github.com/google-deepmind/chex/releases/tag/v0.1.91
This commit is contained in:
Gaetan Lepage
2025-09-02 01:39:58 +02:00
parent 27fb23f48d
commit c8df60c61e
@@ -4,7 +4,7 @@
fetchFromGitHub,
# build-system
setuptools,
flit-core,
# dependencies
absl-py,
@@ -22,18 +22,23 @@
buildPythonPackage rec {
pname = "chex";
version = "0.1.90";
version = "0.1.91";
pyproject = true;
src = fetchFromGitHub {
owner = "deepmind";
repo = "chex";
tag = "v${version}";
hash = "sha256-nZYfkK73p3HpUOMPyqkV4YR3BDGrpdZrl36dmfZt7Bk=";
hash = "sha256-lJ9+kvG7dRtfDVgvkcJ9/jtnX0lMfxY4mmZ290y/74U=";
};
build-system = [ setuptools ];
build-system = [
flit-core
];
pythonRelaxDeps = [
"typing_extensions"
];
dependencies = [
absl-py
jax