summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/chex
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-28 02:27:10 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-28 17:06:45 +0100
commitd55fb2ae4d43bef7c709352788889027f257cc78 (patch)
treea52baf03925a2e9d33b40725521c66e372ea1cde /pkgs/development/python-modules/chex
parentpython312Packages.ed25519: disable (diff)
downloadnixpkgs-d55fb2ae4d43bef7c709352788889027f257cc78.tar.gz
python311Packages.chex: 0.1.85 -> 0.1.86
https://github.com/google-deepmind/chex/releases/tag/v0.1.86
Diffstat (limited to 'pkgs/development/python-modules/chex')
-rw-r--r--pkgs/development/python-modules/chex/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/chex/default.nix b/pkgs/development/python-modules/chex/default.nix
index 559d047032c6..08ce0916c25e 100644
--- a/pkgs/development/python-modules/chex/default.nix
+++ b/pkgs/development/python-modules/chex/default.nix
@@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
+, setuptools
, absl-py
, cloudpickle
, dm-tree
@@ -15,8 +16,8 @@
buildPythonPackage rec {
pname = "chex";
- version = "0.1.85";
- format = "setuptools";
+ version = "0.1.86";
+ pyproject = true;
disabled = pythonOlder "3.9";
@@ -24,10 +25,14 @@ buildPythonPackage rec {
owner = "deepmind";
repo = "chex";
rev = "refs/tags/v${version}";
- hash = "sha256-7k/+2dNNbPBXtbabuOEVpAI7T1SuM4JDf074dmTg/vs=";
+ hash = "sha256-Z5Ns4fG5pC99I4xdGjDMKX6YZpTtd1y0TWcIOtr7dug=";
};
- propagatedBuildInputs = [
+ build-system = [
+ setuptools
+ ];
+
+ dependencies = [
absl-py
jaxlib
jax