90 lines
2.1 KiB
Nix
90 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
jax,
|
|
jaxtyping,
|
|
typing-extensions,
|
|
wadler-lindig,
|
|
|
|
# tests
|
|
beartype,
|
|
optax,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "equinox";
|
|
version = "0.13.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "patrick-kidger";
|
|
repo = "equinox";
|
|
tag = "v${version}";
|
|
hash = "sha256-d7IqRuohcZ3IYpbjm76Ir6I33zI5dnHvX5eX2WjSJQk=";
|
|
};
|
|
|
|
# Relax speed constraints on tests that can fail on busy builders
|
|
postPatch = ''
|
|
substituteInPlace tests/test_while_loop.py \
|
|
--replace-fail "speed < 0.1" "speed < 0.5" \
|
|
--replace-fail "speed < 0.5" "speed < 1" \
|
|
--replace-fail "speed < 1" "speed < 20" \
|
|
--replace-fail "speed < 2" "speed < 20"
|
|
''
|
|
# Fix jax 0.8.2 compat
|
|
# Fix submitted upstream: https://github.com/patrick-kidger/equinox/pull/1162
|
|
+ ''
|
|
substituteInPlace equinox/_ad.py equinox/internal/_primitive.py \
|
|
--replace-fail "jax.core.get_aval(" "jax.typeof("
|
|
'';
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
jax
|
|
jaxtyping
|
|
typing-extensions
|
|
wadler-lindig
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
beartype
|
|
optax
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlags = [
|
|
# DeprecationWarning: The default axis_types will change in JAX v0.9.0 to jax.sharding.AxisType.Explicit.
|
|
"-Wignore::DeprecationWarning"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Failed: DID NOT WARN. No warnings of type (<class 'Warning'>,) were emitted.
|
|
"test_jax_transform_warn"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
|
|
"test_filter"
|
|
];
|
|
|
|
pythonImportsCheck = [ "equinox" ];
|
|
|
|
meta = {
|
|
description = "JAX library based around a simple idea: represent parameterised functions (such as neural networks) as PyTrees";
|
|
changelog = "https://github.com/patrick-kidger/equinox/releases/tag/v${version}";
|
|
homepage = "https://github.com/patrick-kidger/equinox";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|