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

python2: 2.7.16 -> 2.7.17

Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
(cherry picked from commit 5b55013aa274c14df01982e4ed3e8c3c3581c744)

+5 -6
+3 -4
pkgs/development/interpreters/python/cpython/2.7/python-2.7-distutils-C++.patch
··· 93 93 _osx_support.customize_compiler(_config_vars) 94 94 _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True' 95 95 96 - - (cc, cxx, opt, cflags, ccshared, ldshared, so_ext, ar, ar_flags) = \ 97 - - get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', 96 + - (cc, cxx, cflags, ccshared, ldshared, so_ext, ar, ar_flags) = \ 97 + - get_config_vars('CC', 'CXX', 'CFLAGS', 98 98 - 'CCSHARED', 'LDSHARED', 'SO', 'AR', 99 99 - 'ARFLAGS') 100 100 + (cc, cxx, ccshared, ldshared, ldcxxshared, so_ext, ar, ar_flags) = \ ··· 120 120 ldshared = ldshared + ' ' + os.environ['LDFLAGS'] 121 121 + ldcxxshared = ldcxxshared + ' ' + os.environ['LDFLAGS'] 122 122 if 'CFLAGS' in os.environ: 123 - - cflags = opt + ' ' + os.environ['CFLAGS'] 124 - + cflags = os.environ['CFLAGS'] 123 + cflags = cflags + ' ' + os.environ['CFLAGS'] 125 124 ldshared = ldshared + ' ' + os.environ['CFLAGS'] 126 125 + if 'CXXFLAGS' in os.environ: 127 126 + cxxflags = os.environ['CXXFLAGS']
+2 -2
pkgs/development/interpreters/python/default.nix
··· 50 50 sourceVersion = { 51 51 major = "2"; 52 52 minor = "7"; 53 - patch = "16"; 53 + patch = "17"; 54 54 suffix = ""; 55 55 }; 56 - sha256 = "1mqfcqp5y8r0bfyr7ppl74n0lig45p9mc4b8adlcpvj74rhfy8pj"; 56 + sha256 = "0hds28cg226m8j8sr394nm9yc4gxhvlv109w0avsf2mxrlrz0hsd"; 57 57 inherit (darwin) CF configd; 58 58 inherit passthruFun; 59 59 };