python3Packages.chex: 0.1.90 -> 0.1.91 (#439372)

This commit is contained in:
Gaétan Lepage
2025-09-02 23:40:39 +02:00
committed by GitHub
@@ -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