release-python.nix: add aarch64-linux

Reduce the number of surprises when we go from staging to staging-next
with python-unstable.

+4 -1
+4 -1
pkgs/top-level/release-python.nix
··· 4 4 */ 5 5 6 6 { # The platforms for which we build Nixpkgs. 7 - supportedSystems ? [ "x86_64-linux" ] 7 + supportedSystems ? [ 8 + "aarch64-linux" 9 + "x86_64-linux" 10 + ] 8 11 , # Attributes passed to nixpkgs. Don't build packages marked as unfree. 9 12 nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; } 10 13 }: