Description
Inside the Python wheel the METADATA files are under a directory called:
PySide2-5.11.2-5.11.2.dist-info/
The standard format for wheels should look like this: <name>-<version>.dist-info
So this directory should be:
PySide2-5.11.2.dist-info/
This breaks any tools that try to read this data from the whl file, such as Bazel:
KeyError: "There is no item named 'PySide2-5.11.2.dist-info/METADATA' in the archive"
A current workaround is to extract the wheel and rezip it with the proper directory structure, and then install using that.