python3.pkgs.pythonRuntimeDepsCheckHook: don't validate wheel metadata
Metadata can have issues that the packaging library will complain about, but that should not prevent us from building any package.
This commit is contained in:
@@ -55,7 +55,7 @@ def get_metadata(wheel: str) -> Metadata:
|
||||
"""
|
||||
text = get_manifest_text_from_wheel(wheel)
|
||||
raw, _ = parse_email(text)
|
||||
metadata = Metadata.from_raw(raw)
|
||||
metadata = Metadata.from_raw(raw, validate=False)
|
||||
|
||||
return metadata
|
||||
|
||||
|
||||
Reference in New Issue
Block a user