python312Packages.optimistix: init at 0.0.8

This commit is contained in:
Gaetan Lepage 2024-07-10 15:49:26 +02:00
parent 4915d1cb8a
commit 06e05929e9
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,63 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
equinox,
jax,
jaxtyping,
lineax,
typing-extensions,
# checks
beartype,
jaxlib,
optax,
pytestCheckHook,
pytest-xdist,
}:
buildPythonPackage rec {
pname = "optimistix";
version = "0.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "patrick-kidger";
repo = "optimistix";
rev = "refs/tags/v${version}";
hash = "sha256-0ehNApiBoiAb8LFBW81ZCRPsjTVQG8zRTVSAp7oHF8w=";
};
build-system = [ hatchling ];
dependencies = [
equinox
jax
jaxtyping
lineax
typing-extensions
];
pythonImportsCheck = [ "optimistix" ];
nativeCheckInputs = [
beartype
jaxlib
optax
pytestCheckHook
pytest-xdist
];
meta = {
description = "Nonlinear optimisation (root-finding, least squares, ...) in JAX+Equinox";
homepage = "https://github.com/patrick-kidger/optimistix";
changelog = "https://github.com/patrick-kidger/optimistix/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}

View File

@ -9410,6 +9410,8 @@ self: super: with self; {
optax = callPackage ../development/python-modules/optax { };
optimistix = callPackage ../development/python-modules/optimistix { };
optimum = callPackage ../development/python-modules/optimum { };
optree = callPackage ../development/python-modules/optree { };