
Diff: https://github.com/patrick-kidger/equinox/compare/refs/tags/v0.12.2...refs/tags/v0.13.0 Changelog: https://github.com/patrick-kidger/equinox/releases/tag/v0.13.0
74 lines
1.6 KiB
Nix
74 lines
1.6 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.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "patrick-kidger";
|
|
repo = "equinox";
|
|
tag = "v${version}";
|
|
hash = "sha256-zXgAuFGWKHShKodi9swnWIry4VU9s4pBhBRoK5KzaL0=";
|
|
};
|
|
|
|
# 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 < 4" \
|
|
'';
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
jax
|
|
jaxtyping
|
|
typing-extensions
|
|
wadler-lindig
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
beartype
|
|
optax
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = 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 ];
|
|
};
|
|
}
|