mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user