fix: Python 3.10 doesn't need ctypes.util.find_library() patch

This patch is only needed on Python 3.9 version, as it is included in
3.10.0 release.
This commit is contained in:
Nikola Knezevic
2021-12-17 23:09:19 +01:00
parent 5c55a03cb3
commit 561bc25fa4

View File

@@ -240,6 +240,7 @@ in with passthru; stdenv.mkDerivation {
] ++ optionals (pythonAtLeast "3.9" && stdenv.isDarwin) [
# Stop checking for TCL/TK in global macOS locations
./3.9/darwin-tcl-tk.patch
] ++ optionals (isPy39 && stdenv.isDarwin) [
# ctypes.util.find_library() now finds macOS 11+ system libraries when built on older macOS systems
# https://github.com/python/cpython/pull/28053
./3.9/bpo-44689-ctypes.util.find_library-now-finds-macOS-1.patch