python310Packages.optax: add changelog to meta
- update meta - add format - disable on older Python releases
This commit is contained in:
@@ -1,16 +1,20 @@
|
||||
{ absl-py
|
||||
{ lib
|
||||
, absl-py
|
||||
, buildPythonPackage
|
||||
, chex
|
||||
, fetchFromGitHub
|
||||
, jaxlib
|
||||
, lib
|
||||
, numpy
|
||||
, callPackage
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "optax";
|
||||
version = "0.1.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deepmind";
|
||||
@@ -24,7 +28,9 @@ buildPythonPackage rec {
|
||||
"testsout"
|
||||
];
|
||||
|
||||
buildInputs = [ jaxlib ];
|
||||
buildInputs = [
|
||||
jaxlib
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
absl-py
|
||||
@@ -49,8 +55,9 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Optax is a gradient processing and optimization library for JAX.";
|
||||
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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user