Skip to content

Commit

Permalink
python312Packages.optimistix: init at 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Sep 30, 2024
1 parent 4915d1c commit 06e0592
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
63 changes: 63 additions & 0 deletions pkgs/development/python-modules/optimistix/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 06e0592

Please sign in to comment.