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.
wip/yesman
Frederik Rietdijk 4 years ago
parent bbd12947de
commit b7aec77a7b
  1. 6
      pkgs/development/interpreters/python/mk-python-derivation.nix

@ -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

Loading…
Cancel
Save