mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-08 14:23:40 +00:00
Diff: https://github.com/patrick-kidger/equinox/compare/v0.13.7...v0.13.8 Changelog: https://github.com/patrick-kidger/equinox/releases/tag/v0.13.8
76 lines
1.6 KiB
Nix
76 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
jax,
|
|
jaxtyping,
|
|
typing-extensions,
|
|
wadler-lindig,
|
|
|
|
# tests
|
|
beartype,
|
|
optax,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "equinox";
|
|
version = "0.13.8";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "patrick-kidger";
|
|
repo = "equinox";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-JiIZKWuSkvrF09GdmegUeTyidaM5IRp4uqjJRsn86E4=";
|
|
};
|
|
|
|
# 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"
|
|
'';
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
jax
|
|
jaxtyping
|
|
typing-extensions
|
|
wadler-lindig
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
beartype
|
|
optax
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "equinox" ];
|
|
|
|
disabledTests = [
|
|
# Flaky under heavy load:
|
|
# AssertionError: Non-linear scaling detected: ratio=1.56
|
|
"test_speed_buffer_while"
|
|
];
|
|
|
|
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/${finalAttrs.src.tag}";
|
|
homepage = "https://github.com/patrick-kidger/equinox";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
})
|