-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythonPackages.pip: make reproducible (#102222)
The previous attempt wasn't covering all of the bases. It relied on invoking that pip-install-hook, and didn't apply to pip itself. The core issue is that the generated .pyc files embed some of the temporary paths, which are randomly generated. See https://r13y.com/diff/bf8c3ca3148ebff9ecf41f294cc60b9f209c006d49699e356969ff32d736f1c6-8806a7cca91fdd300e48736bfcd57c4d0b54c1cc2fd61609f35143170862b59c.html In this new attempt, the approach is to patch the TempFile implementation directly, so that it creates stable temporary directories. We also assume that if SOURCE_DATE_EPOCH is set, we are in a scenario where reproducible builds are desirable and enter that branch. See also pypa/pip#7808
- Loading branch information
Showing
4 changed files
with
32 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
diff --git a/src/pip/_internal/operations/install/wheel.py b/src/pip/_internal/operations/install/wheel.py | ||
index e7315ee4..4e36b03d 100644 | ||
--- a/src/pip/_internal/operations/install/wheel.py | ||
+++ b/src/pip/_internal/operations/install/wheel.py | ||
@@ -615,6 +615,8 @@ def install_wheel( | ||
direct_url=None, # type: Optional[DirectUrl] | ||
): | ||
# type: (...) -> None | ||
+ _temp_dir_for_testing = ( | ||
+ _temp_dir_for_testing or os.environ.get("NIX_PIP_INSTALL_TMPDIR")) | ||
with TempDirectory( | ||
path=_temp_dir_for_testing, kind="unpacked-wheel" | ||
) as unpacked_dir, ZipFile(wheel_path, allowZip64=True) as z: | ||
diff --git a/src/pip/_internal/utils/temp_dir.py b/src/pip/_internal/utils/temp_dir.py | ||
index 201ba6d98..f1569fecd 100644 | ||
--- a/src/pip/_internal/utils/temp_dir.py | ||
+++ b/src/pip/_internal/utils/temp_dir.py | ||
@@ -3,6 +3,7 @@ from __future__ import absolute_import | ||
import errno | ||
import itertools | ||
import logging | ||
+import os | ||
import os.path | ||
import tempfile | ||
from contextlib import contextmanager | ||
@@ -181,6 +182,11 @@ class TempDirectory(object): | ||
# symlinked to another directory. This tends to confuse build | ||
# scripts, so we canonicalize the path by traversing potential | ||
# symlinks here. | ||
+ if "SOURCE_DATE_EPOCH" in os.environ: | ||
+ path = os.path.join(tempfile.gettempdir(), "pip-{}-immobile".format(kind)) | ||
+ os.mkdir(path) | ||
+ return path | ||
+ | ||
path = os.path.realpath( | ||
tempfile.mkdtemp(prefix="pip-{}-".format(kind)) | ||
) | ||
|