Skip to content

Commit

Permalink
python311Packages.chex: 0.1.85 -> 0.1.86
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Mar 28, 2024
1 parent 1a8fea0 commit d55fb2a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pkgs/development/python-modules/chex/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, absl-py
, cloudpickle
, dm-tree
Expand All @@ -15,19 +16,23 @@

buildPythonPackage rec {
pname = "chex";
version = "0.1.85";
format = "setuptools";
version = "0.1.86";
pyproject = true;

disabled = pythonOlder "3.9";

src = fetchFromGitHub {
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
Expand Down

0 comments on commit d55fb2a

Please sign in to comment.