python311Packages.torchrl: mark as broken on aarch64-linux

This commit is contained in:
Gaetan Lepage 2024-05-08 00:53:15 +02:00
parent 29681e6dd6
commit 4aee1c1c87
1 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,7 @@
, pytestCheckHook
, pyyaml
, scipy
, stdenv
}:
buildPythonPackage rec {
@ -161,5 +162,7 @@ buildPythonPackage rec {
changelog = "https://github.com/pytorch/rl/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
# ~3k tests fail with: RuntimeError: internal error
broken = stdenv.isLinux && stdenv.isAarch64;
};
}