buildPythonPackage: don't recompile bytecode

There are too many regressions. Instead of reverting all the work that has been
done on this so far, let's just disable it Python-wide. That way we can
investigate and fix it easier.
This commit is contained in:
Frederik Rietdijk 2020-06-17 14:54:03 +02:00
parent bbd12947de
commit b7aec77a7b

View File

@ -165,10 +165,8 @@ let
# Python packages built through cross-compilation are always for the host platform.
disallowedReferences = lib.optionals (python.stdenv.hostPlatform != python.stdenv.buildPlatform) [ python.pythonForBuild ];
# many packages that support python2, may include code
# which python2 is not able to compile
# mkDerivation hash will not change when passed null attrs
dontUsePythonRecompileBytecode = attrs.dontUsePythonRecompileBytecode or (if python.isPy27 then true else null);
# For now, revert recompilation of bytecode.
dontUsePythonRecompileBytecode = true;
meta = {
# default to python's platforms