2023-02-22 10:55:15 +00:00
|
|
|
{ lib
|
2024-02-07 01:22:34 +00:00
|
|
|
, stdenv
|
2023-02-22 10:55:15 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchFromGitHub
|
2024-02-07 01:22:34 +00:00
|
|
|
, fetchpatch
|
2024-01-13 08:15:51 +00:00
|
|
|
, pytest-xdist
|
2023-02-22 10:55:15 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, absl-py
|
|
|
|
, cvxpy
|
|
|
|
, jax
|
|
|
|
, jaxlib
|
|
|
|
, matplotlib
|
|
|
|
, numpy
|
|
|
|
, optax
|
|
|
|
, scipy
|
2023-03-08 16:32:21 +00:00
|
|
|
, scikit-learn
|
2023-02-22 10:55:15 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jaxopt";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "0.8.3";
|
2023-07-15 17:15:38 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2023-02-22 10:55:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
2023-11-16 04:20:00 +00:00
|
|
|
repo = "jaxopt";
|
|
|
|
rev = "refs/tags/jaxopt-v${version}";
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-T/BHSnuk3IRuLkBj3Hvb/tFIb7Au25jjQtvwL28OU1U=";
|
2023-02-22 10:55:15 +00:00
|
|
|
};
|
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
patches = [
|
|
|
|
# fix failing tests from scipy 1.12 update
|
|
|
|
# https://github.com/google/jaxopt/pull/574
|
|
|
|
(fetchpatch {
|
|
|
|
name = "scipy-1.12-fix-tests.patch";
|
|
|
|
url = "https://github.com/google/jaxopt/commit/48b09dc4cc93b6bc7e6764ed5d333f9b57f3493b.patch";
|
|
|
|
hash = "sha256-v+617W7AhxA1Dzz+DBtljA4HHl89bRTuGi1QfatobNY=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-02-22 10:55:15 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
absl-py
|
|
|
|
jax
|
|
|
|
jaxlib
|
|
|
|
matplotlib
|
|
|
|
numpy
|
|
|
|
scipy
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
2024-01-13 08:15:51 +00:00
|
|
|
pytest-xdist
|
2023-02-22 10:55:15 +00:00
|
|
|
pytestCheckHook
|
|
|
|
cvxpy
|
|
|
|
optax
|
2023-03-08 16:32:21 +00:00
|
|
|
scikit-learn
|
2023-02-22 10:55:15 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"jaxopt"
|
|
|
|
"jaxopt.implicit_diff"
|
|
|
|
"jaxopt.linear_solve"
|
|
|
|
"jaxopt.loss"
|
|
|
|
"jaxopt.tree_util"
|
|
|
|
];
|
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
disabledTests = lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
|
|
|
|
# https://github.com/google/jaxopt/issues/577
|
|
|
|
"test_binary_logit_log_likelihood"
|
|
|
|
"test_solve_sparse"
|
|
|
|
"test_logreg_with_intercept_manual_loop3"
|
|
|
|
];
|
|
|
|
|
2023-02-22 10:55:15 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://jaxopt.github.io";
|
|
|
|
description = "Hardware accelerated, batchable and differentiable optimizers in JAX";
|
2023-10-19 13:55:26 +00:00
|
|
|
changelog = "https://github.com/google/jaxopt/releases/tag/jaxopt-v${version}";
|
2023-02-22 10:55:15 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
|
|
};
|
|
|
|
}
|