5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
59 lines
1,011 B
Nix
59 lines
1,011 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, absl-py
|
|
, cvxpy
|
|
, jax
|
|
, jaxlib
|
|
, matplotlib
|
|
, numpy
|
|
, optax
|
|
, scipy
|
|
, scikitlearn
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jaxopt";
|
|
version = "0.5.5";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = pname;
|
|
rev = "refs/tags/${pname}-v${version}";
|
|
hash = "sha256-WOsr/Dvguu9/qX6+LMlAKM3EANtYPtDu8Uo2157+bs0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
absl-py
|
|
jax
|
|
jaxlib
|
|
matplotlib
|
|
numpy
|
|
scipy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
cvxpy
|
|
optax
|
|
scikitlearn
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jaxopt"
|
|
"jaxopt.implicit_diff"
|
|
"jaxopt.linear_solve"
|
|
"jaxopt.loss"
|
|
"jaxopt.tree_util"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://jaxopt.github.io";
|
|
description = "Hardware accelerated, batchable and differentiable optimizers in JAX";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|