py-spy: set platforms, mark as broken for aarch64

Aarch64 support is blocked on https://github.com/benfred/py-spy/pull/330,
the build currently fails there. Mark it as such.
This commit is contained in:
Florian Klink
2025-03-24 19:33:12 +00:00
parent abf2b9d6ea
commit 1f7c07318f
@@ -44,5 +44,8 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/benfred/py-spy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ lnl7 ];
platforms = lib.platforms.linux;
# https://github.com/benfred/py-spy/pull/330
broken = stdenv.hostPlatform.isAarch64;
};
}