python313Packages.flaxlib: fix build (#373159)

Changed files
+7
pkgs
development
python-modules
flaxlib
+7
pkgs/development/python-modules/flaxlib/default.nix
···
pytestCheckHook
];
+
env = {
+
# https://github.com/google/flax/issues/4491
+
# Upstream should update Cargo.lock
+
# Enabling `PYO3_USE_ABI3_FORWARD_COMPATIBILITY` allows us to temporarily avoid the issue
+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY = true;
+
};
+
# This package does not have tests (yet ?)
doCheck = false;