python310Packages.optax: remove unused input, rec

This commit is contained in:
Sandro Jäckel 2023-07-14 14:09:25 +02:00
parent b42f54435e
commit 5cfde70626
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,5 +1,4 @@
{ stdenv
, buildPythonPackage
{ buildPythonPackage
, dm-haiku
, pytest-xdist
, pytestCheckHook
@ -9,7 +8,7 @@
, optax
}:
buildPythonPackage rec {
buildPythonPackage {
pname = "optax-tests";
inherit (optax) version;
@ -31,5 +30,4 @@ buildPythonPackage rec {
# See https://github.com/deepmind/optax/issues/323
"examples/lookahead_mnist_test.py"
];
}