python310Packages.jmp: unstable-2021-10-03 -> 0.0.4

Diff: 4b94370b8d...v0.0.4

Changelog: https://github.com/deepmind/jmp/releases/tag/v0.0.4
This commit is contained in:
natsukium 2023-08-15 00:23:43 +09:00
parent 71bf61d89b
commit ff94bb4ba6
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -8,15 +8,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "jmp"; pname = "jmp";
# As of 2022-01-01, the latest stable version (0.0.2) fails tests with recent JAX versions, version = "0.0.4";
# IIUC it's fixed in https://github.com/deepmind/jmp/commit/4969392f618d7733b265677143d8c81e44085867
version = "unstable-2021-10-03";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "deepmind"; owner = "deepmind";
repo = pname; repo = pname;
rev = "260e5ba01f46b10c579a61393e6c7e546aeae93e"; rev = "refs/tags/v${version}";
hash = "sha256-BTHy/jNf6LeV+x3GTI9MDBWLK6A5z2Z1TQyBkHMTeuE="; hash = "sha256-+PefZU1209vvf1SfF8DXiTvKYEnZ4y8iiIr8yKikx9Y=";
}; };
# Wheel requires only `numpy`, but the import needs `jax`. # Wheel requires only `numpy`, but the import needs `jax`.