Description
What's the problem this feature will solve?
In the Spack package manager we register the sha256 of the sources of any package, whether it's Python, C, C++, or Fortran.
For PyPI hosted packages we either have to
- make an API request to figure out the download URL
- store both the sha256 and the download URL
- make an educated guess about the download URL
Option number 3 is pain due to inconsistencies, e.g.
https://files.pythonhosted.org/packages/source/F/Fiona/Fiona-1.9.4.tar.gz
https://files.pythonhosted.org/packages/source/f/fiona/fiona-1.9.5.tar.gz # inconsistent capitalization
or
https://pypi.org/packages/source/b/bitstring/bitstring-3.1.5.zip
https://pypi.org/packages/source/b/bitstring/bitstring-4.0.2.tar.gz # inconsistent archive
Describe the solution you'd like
We'd prefer to only store the hash and do a single request to download the wheel / sdist from PyPI, without having to make a guess or deal with exceptions in naming.
That means we'd like to download by hash.
For example, if we wanna download black-24.2.0-py3-none-any.whl
, which has a sha256 e8a6ae970537e67830776488bca52000eaa37fa63b9988e8c487458d9cd5ace6
it would be great if that was just one request to
and have that redirect to the relevant download URL.