Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #59260 from domenkozar/python37-darwin

python37: get it to build again on darwin

authored by

Domen Kožar and committed by
GitHub
70cff41f 55f4df0b

+6 -4
+6 -4
pkgs/development/interpreters/python/cpython/default.nix
··· 105 105 if isPy35 then 106 106 ./3.5/python-3.x-distutils-C++.patch 107 107 else 108 - fetchpatch { 109 - url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch"; 110 - sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2"; 111 - } 108 + if isPy37 109 + then null # TODO: apply the patch 110 + else fetchpatch { 111 + url = "https://bugs.python.org/file48016/python-3.x-distutils-C++.patch"; 112 + sha256 = "1h18lnpx539h5lfxyk379dxwr8m2raigcjixkf133l4xy3f4bzi2"; 113 + } 112 114 ) 113 115 ]; 114 116