depot/third_party/nixpkgs/pkgs/development/python-modules/jmp/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

41 lines
794 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, jax
, jaxlib
, lib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jmp";
version = "0.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "deepmind";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-+PefZU1209vvf1SfF8DXiTvKYEnZ4y8iiIr8yKikx9Y=";
};
# Wheel requires only `numpy`, but the import needs `jax`.
propagatedBuildInputs = [
jax
];
pythonImportsCheck = [
"jmp"
];
nativeCheckInputs = [
jaxlib
pytestCheckHook
];
meta = with lib; {
description = "This library implements support for mixed precision training in JAX.";
homepage = "https://github.com/deepmind/jmp";
license = licenses.asl20;
maintainers = with maintainers; [ ndl ];
};
}