π bug report
Affected Rule
The issue is caused by the rule: py_wheel (specifically get_new_requirement_line in tools/wheelmaker.py, and the extra_requires handling in python/private/py_wheel.bzl)
Is this a regression?
No β the bug was introduced together with URL-requirement support in wheelmaker (PR #3569). Direct-URL requirements with environment markers have never produced valid wheel metadata.
Description
When a py_wheel requires (or a line in requires_file) is a PEP 508 direct-URL requirement with an environment marker, e.g.
somepkg @ https://example.com/wheels/somepkg-1.0-none-none-linux_x86_64.whl ; sys_platform == 'linux'
wheelmaker re-serializes the requirement in get_new_requirement_line as:
base = f"Requires-Dist: {req.name}{req_extra_deps}{req_spec}" # ends with the URL
...
return f"{base}; {req.marker}" # no whitespace before ';'
producing a METADATA line without whitespace before the ; marker separator:
Requires-Dist: somepkg @ https://example.com/wheels/somepkg-1.0-none-none-linux_x86_64.whl; sys_platform == 'linux'
That is invalid PEP 508. Per the spec, whitespace after a URL is mandatory since ; is a valid URI character (sub-delims), so a strict parser greedily consumes whl; into the URL and then fails. pip rejects the wheel at install time:
ERROR: Requested urlmarker==0.1 from file:///.../urlmarker-0.1-py3-none-any.whl has invalid metadata: Expected semicolon (after URL and whitespace) or end
somepkg @ https://example.com/wheels/somepkg-1.0-none-none-linux_x86_64.whl; sys_platform == 'linux'
Note that wheelmaker strips extra whitespace via Requirement(...) round-tripping, so there is no way to emit valid metadata for URL+marker requirements through py_wheel without patching wheelmaker.
For non-URL requirements (stim~=1.16.0; sys_platform != 'linux') the missing space happens to be harmless since the grammar allows version_end wsp* ';', so this only breaks direct URLs.
π¬ Minimal Reproduction
# BUILD.bazel
load("@rules_python//python:packaging.bzl", "py_wheel")
py_wheel(
name = "wheel",
distribution = "urlmarker",
version = "0.1",
requires = [
"somepkg @ https://example.com/wheels/somepkg-1.0-none-none-linux_x86_64.whl ; sys_platform == 'linux'",
],
)
bazel build //:wheel
pip install --dry-run bazel-bin/urlmarker-0.1-py3-none-any.whl
# => ERROR: ... has invalid metadata: Expected semicolon (after URL and whitespace) or end
(The URL does not need to resolve β metadata validation fails before pip ever fetches it.)
π₯ Exception or Error
ERROR: Requested urlmarker==0.1 from file:///.../urlmarker-0.1-py3-none-any.whl has invalid metadata: Expected semicolon (after URL and whitespace) or end
somepkg @ https://example.com/wheels/somepkg-1.0-cp312-cp312-macosx_15_0_arm64.whl; sys_platform == 'darwin'
Suggested fix
Emit a space before ; in all branches of get_new_requirement_line β valid for every requirement type and required for URLs:
if req.marker:
if extra:
- return f"{base}; ({req.marker}) and {extra}"
+ return f"{base} ; ({req.marker}) and {extra}"
else:
- return f"{base}; {req.marker}"
+ return f"{base} ; {req.marker}"
elif extra:
- return f"{base}; {extra}"
+ return f"{base} ; {extra}"
(Note extra may itself be a marker expression such as extra == 'cuda', and base may end in a URL here too when extra_requires entries use direct URLs β see below.)
π Your Environment
Operating System:
Output of bazel version:
Bazelisk version: v1.29.0
Build label: 9.2.0
Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer
Build time: Mon Jul 13 18:15:04 2026 (1783966504)
Build timestamp: 1783966504
Build timestamp as int: 1783966504
Rules_python version:
2.3.3 (still present on main at the time of writing)
Anything else relevant?
-
The extra_requires path in python/private/py_wheel.bzl has the same missing-space problem: it emits
metadata_contents.append(
"Requires-Dist: %s; extra == '%s'" % (requirement, option),
)
If an extra's requirement is a direct URL (e.g. "somepkg @ https://example.com/pkg.whl" under extra_requires = {"cuda": [...]}), this produces ...pkg.whl; extra == 'cuda' β the same invalid metadata. These lines pass through get_new_requirement_line in wheelmaker (which fixes them if the suggested fix above is applied, since the URL ends up in base and extra == '...' becomes extra), but only because rpartition(";") splits off the extra marker; the raw "%s; extra == '%s'" formatting should arguably also include the space for consistency.
-
pip/uv accept name @ url; marker in requirements files, which masks the issue during development β the failure only surfaces when installing the built wheel, because wheel metadata is validated strictly.
π bug report
Affected Rule
The issue is caused by the rule:
py_wheel(specificallyget_new_requirement_lineintools/wheelmaker.py, and theextra_requireshandling inpython/private/py_wheel.bzl)Is this a regression?
No β the bug was introduced together with URL-requirement support in wheelmaker (PR #3569). Direct-URL requirements with environment markers have never produced valid wheel metadata.
Description
When a
py_wheelrequires(or a line inrequires_file) is a PEP 508 direct-URL requirement with an environment marker, e.g.wheelmaker re-serializes the requirement in
get_new_requirement_lineas:producing a METADATA line without whitespace before the
;marker separator:That is invalid PEP 508. Per the spec, whitespace after a URL is mandatory since
;is a valid URI character (sub-delims), so a strict parser greedily consumeswhl;into the URL and then fails.piprejects the wheel at install time:Note that wheelmaker strips extra whitespace via
Requirement(...)round-tripping, so there is no way to emit valid metadata for URL+marker requirements throughpy_wheelwithout patching wheelmaker.For non-URL requirements (
stim~=1.16.0; sys_platform != 'linux') the missing space happens to be harmless since the grammar allowsversion_end wsp* ';', so this only breaks direct URLs.π¬ Minimal Reproduction
bazel build //:wheel pip install --dry-run bazel-bin/urlmarker-0.1-py3-none-any.whl # => ERROR: ... has invalid metadata: Expected semicolon (after URL and whitespace) or end(The URL does not need to resolve β metadata validation fails before pip ever fetches it.)
π₯ Exception or Error
Suggested fix
Emit a space before
;in all branches ofget_new_requirement_lineβ valid for every requirement type and required for URLs:if req.marker: if extra: - return f"{base}; ({req.marker}) and {extra}" + return f"{base} ; ({req.marker}) and {extra}" else: - return f"{base}; {req.marker}" + return f"{base} ; {req.marker}" elif extra: - return f"{base}; {extra}" + return f"{base} ; {extra}"(Note
extramay itself be a marker expression such asextra == 'cuda', andbasemay end in a URL here too whenextra_requiresentries use direct URLs β see below.)π Your Environment
Operating System:
Output of
bazel version:Rules_python version:
Anything else relevant?
The
extra_requirespath inpython/private/py_wheel.bzlhas the same missing-space problem: it emitsIf an extra's requirement is a direct URL (e.g.
"somepkg @ https://example.com/pkg.whl"underextra_requires = {"cuda": [...]}), this produces...pkg.whl; extra == 'cuda'β the same invalid metadata. These lines pass throughget_new_requirement_linein wheelmaker (which fixes them if the suggested fix above is applied, since the URL ends up inbaseandextra == '...'becomesextra), but only becauserpartition(";")splits off the extra marker; the raw"%s; extra == '%s'"formatting should arguably also include the space for consistency.pip/uvacceptname @ url; markerin requirements files, which masks the issue during development β the failure only surfaces when installing the built wheel, because wheel metadata is validated strictly.