depot/third_party/nixpkgs/pkgs/development/python-modules/optax/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

64 lines
1.2 KiB
Nix

{
lib,
absl-py,
buildPythonPackage,
flit-core,
chex,
fetchFromGitHub,
jaxlib,
numpy,
callPackage,
pythonOlder,
}:
buildPythonPackage rec {
pname = "optax";
version = "0.2.2";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "deepmind";
repo = "optax";
rev = "refs/tags/v${version}";
hash = "sha256-sBiKUuQR89mttc9Njrh1aeUJOYdlcF7Nlj3/+Y7OMb4=";
};
outputs = [
"out"
"testsout"
];
nativeBuildInputs = [ flit-core ];
buildInputs = [ jaxlib ];
propagatedBuildInputs = [
absl-py
chex
numpy
];
postInstall = ''
mkdir $testsout
cp -R examples $testsout/examples
'';
pythonImportsCheck = [ "optax" ];
# check in passthru.tests.pytest to escape infinite recursion with flax
doCheck = false;
passthru.tests = {
pytest = callPackage ./tests.nix { };
};
meta = with lib; {
description = "Gradient processing and optimization library for JAX";
homepage = "https://github.com/deepmind/optax";
changelog = "https://github.com/deepmind/optax/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ndl ];
};
}