Merge pull request #165680 from williballenthin/patch-1

This commit is contained in:
Artturi 2022-03-25 20:51:23 +02:00 committed by GitHub
commit 15becbf574
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,10 @@ buildPythonPackage rec {
'';
# needed on non-x86 linux
setupPyBuildFlags = lib.optionals stdenv.isLinux [ "--plat-name" "linux" ];
setupPyBuildFlags = lib.optionals stdenv.isLinux [ "--plat-name" "linux" ]
# aarch64 only available from MacOS SDK 11 onwards, so fix the version tag.
# otherwise, bdist_wheel may detect "macosx_10_6_arm64" which doesn't make sense.
++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ "--plat-name" "macosx_11_0" ];
propagatedBuildInputs = [
setuptools