summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/3to2
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-11-07 15:36:46 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-11-12 19:32:30 +0100
commit3fceafce1eaa82c36a21153efbf7c1ee87af7b0e (patch)
tree408b8d9c321e2b6092789b190b19816d7002a89d /pkgs/development/python-modules/3to2
parentca6e7454a46ae484505c697e09b5a814320ec640 (diff)
buildPython*: remove pythonRecompileBytecodeHook as dependency
This hook was added to get reproducible bytecode. Because it was causing issues it was disabled, but still kept as a dependency. Now the main issue with bytecode reproducibility has been resolved by updating pip to 20.2.4, we remove this hook as a dependency. If a package with Python code is not yet reproducible, one could add this hook to `nativeBuildInputs`.
Diffstat (limited to 'pkgs/development/python-modules/3to2')
-rw-r--r--pkgs/development/python-modules/3to2/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/3to2/default.nix b/pkgs/development/python-modules/3to2/default.nix
index 8870388c2846..ff64a6d1a473 100644
--- a/pkgs/development/python-modules/3to2/default.nix
+++ b/pkgs/development/python-modules/3to2/default.nix
@@ -24,8 +24,6 @@ buildPythonPackage rec {
# Test failing due to upstream issue (https://bitbucket.org/amentajo/lib3to2/issues/50/testsuite-fails-with-new-python-35)
doCheck = false;
- dontUsePythonRecompileBytecode = true;
-
meta = {
homepage = "https://bitbucket.org/amentajo/lib3to2";
description = "Refactors valid 3.x syntax into valid 2.x syntax, if a syntactical conversion is possible";