Skip to content

Commit d1c0dad

Browse files
Pass --proxy to build subprocesses (#13124)
Similar to --cert and --client-cert, the --proxy flag was not passed down to the isolated build environment. This was simply an oversight. I opted to store the original proxy string in a new attribute on the session as digging into the .proxies dictionary felt janky, and so did passing the proxy string to the finder as an argument. Co-authored-by: lcmartin <[email protected]>
1 parent 39be130 commit d1c0dad

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

news/6018.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The ``--proxy`` command-line option is now respected while installing build dependencies.

src/pip/_internal/build_env.py

+2
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ def _install_requirements(
272272
for link in finder.find_links:
273273
args.extend(["--find-links", link])
274274

275+
if finder.proxy:
276+
args.extend(["--proxy", finder.proxy])
275277
for host in finder.trusted_hosts:
276278
args.extend(["--trusted-host", host])
277279
if finder.client_cert:

src/pip/_internal/cli/index_command.py

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ def _build_session(
123123
"https": options.proxy,
124124
}
125125
session.trust_env = False
126+
session.pip_proxy = options.proxy
126127

127128
# Determine if we can prompt the user for authentication or not
128129
session.auth.prompting = not options.no_input

src/pip/_internal/index/package_finder.py

+4
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,10 @@ def find_links(self) -> List[str]:
661661
def index_urls(self) -> List[str]:
662662
return self.search_scope.index_urls
663663

664+
@property
665+
def proxy(self) -> Optional[str]:
666+
return self._link_collector.session.pip_proxy
667+
664668
@property
665669
def trusted_hosts(self) -> Iterable[str]:
666670
for host_port in self._link_collector.session.pip_trusted_origins:

src/pip/_internal/network/session.py

+1
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ def __init__(
339339
# Namespace the attribute with "pip_" just in case to prevent
340340
# possible conflicts with the base class.
341341
self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = []
342+
self.pip_proxy = None
342343

343344
# Attach our User Agent to the request
344345
self.headers["User-Agent"] = user_agent()

tests/functional/test_proxy.py

+16
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,19 @@ def test_proxy_does_not_override_netrc(
9090
"simple",
9191
)
9292
script.assert_installed(simple="3.0")
93+
94+
95+
@pytest.mark.network
96+
def test_build_deps_use_proxy_from_cli(
97+
script: PipTestEnvironment, capfd: pytest.CaptureFixture[str], data: TestData
98+
) -> None:
99+
args = ["wheel", "-v", str(data.packages / "pep517_setup_and_pyproject")]
100+
args.extend(["--proxy", "http://127.0.0.1:9000"])
101+
102+
with proxy.Proxy(port=9000, num_acceptors=1, plugins=[AccessLogPlugin]):
103+
result = script.pip(*args)
104+
105+
wheel_path = script.scratch / "pep517_setup_and_pyproject-1.0-py3-none-any.whl"
106+
result.did_create(wheel_path)
107+
access_log, _ = capfd.readouterr()
108+
assert "CONNECT" in access_log, "setuptools was not fetched using proxy"

0 commit comments

Comments
 (0)