504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, hatchling
|
|
, jax
|
|
, jaxlib
|
|
, jaxtyping
|
|
, typing-extensions
|
|
, beartype
|
|
, optax
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "equinox";
|
|
version = "0.11.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "patrick-kidger";
|
|
repo = "equinox";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qFTKiY/t2LCCWJBOSfaX0hYQInrpXgfhTc+J4iuyVbM=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch { # https://github.com/patrick-kidger/equinox/pull/601
|
|
name = "fix-wrong-PRNGKey-annotation";
|
|
url = "https://github.com/patrick-kidger/equinox/pull/601/commits/dce2fa1b7dcfd25d9573ce3186c5f6e8f79392bb.patch";
|
|
hash = "sha256-tlGV5xuNGLZTd1GlPwllybPz8tWHGHaCBdlsEuISm/0=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jax
|
|
jaxlib
|
|
jaxtyping
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
beartype
|
|
optax
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "equinox" ];
|
|
|
|
meta = with lib; {
|
|
description = "A JAX library based around a simple idea: represent parameterised functions (such as neural networks) as PyTrees";
|
|
homepage = "https://github.com/patrick-kidger/equinox";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|