fc6af54bb4
Diff: https://github.com/deepmind/chex/compare/refs/tags/v0.1.84...v0.1.85 Changelog: https://github.com/google-deepmind/chex/releases/tag/v0.1.85
56 lines
1,023 B
Nix
56 lines
1,023 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, absl-py
|
|
, cloudpickle
|
|
, dm-tree
|
|
, jax
|
|
, jaxlib
|
|
, numpy
|
|
, pytestCheckHook
|
|
, toolz
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "chex";
|
|
version = "0.1.85";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deepmind";
|
|
repo = "chex";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7k/+2dNNbPBXtbabuOEVpAI7T1SuM4JDf074dmTg/vs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
absl-py
|
|
jaxlib
|
|
jax
|
|
numpy
|
|
toolz
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"chex"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cloudpickle
|
|
dm-tree
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|