py-h5sh: replace github with pypi (#27409)

This commit is contained in:
Seth R. Johnson 2021-11-12 20:01:25 -05:00 committed by GitHub
parent 446e4ff54b
commit 31fec1f730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,15 +10,15 @@ class PyH5sh(PythonPackage):
"""Shell-like environment for HDF5.""" """Shell-like environment for HDF5."""
homepage = "https://github.com/sethrj/h5sh" homepage = "https://github.com/sethrj/h5sh"
url = "https://github.com/sethrj/h5sh/archive/v0.1.1.tar.gz" pypi = "h5sh/h5sh-0.1.1.tar.gz"
maintainers = ['sethrj'] maintainers = ['sethrj']
version('0.1.1', sha256='111989d8200d1da8e150aee637a907e524ca0f98d5005a55587cba0d94d9c4a0') version('0.1.1', sha256='ccd8fed532d479d297baef044265100a4fb9cd119bce6f43270f2ee9f63a2183')
depends_on('py-setuptools', type=('build', 'run')) depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-h5py', type=('build', 'run')) depends_on('py-h5py@2.7.1:', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run')) depends_on('py-numpy@1.15:', type=('build', 'run'))
depends_on('py-prompt-toolkit@2:', type=('build', 'run')) depends_on('py-prompt-toolkit@2:', type=('build', 'run'))
depends_on('py-pygments', type=('build', 'run')) depends_on('py-pygments', type=('build', 'run'))
depends_on('py-six', type=('build', 'run')) depends_on('py-six', type=('build', 'run'))