Revert "python3Packages.flax: 0.6.1 -> 0.6.3"

This reverts commit fe0048c7f8 which broke
flax due to https://github.com/google/flax/issues/2707.
This commit is contained in:
Robert Schütz 2023-02-09 15:50:56 -08:00
parent 7b2a482ea0
commit 33cfeb9563

View file

@ -17,13 +17,13 @@
buildPythonPackage rec {
pname = "flax";
version = "0.6.3";
version = "0.6.1";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-4BYfrwEddA2LCMyDO6PBBYdMVTqqDxhzMCZ5JIIml3g=";
sha256 = "sha256-fZiODo+izOwGjCCTvi11GvUG/VQL1DV9bNXKjvIIw4A=";
};
buildInputs = [ jaxlib ];