py-entrypoints: add v0.4 (#28977)

This commit is contained in:
Manuela Kuhn 2022-02-16 09:40:54 +01:00 committed by GitHub
parent 5d58b94322
commit 8654cc93ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,15 @@
class PyEntrypoints(PythonPackage):
"""Discover and load entry points from installed packages."""
homepage = "https://github.com/takluyver/entrypoints"
pypi = "entrypoints/entrypoints-0.2.3.tar.gz"
version('0.4', sha256='b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4')
version('0.3', sha256='c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451')
version('0.2.3', sha256='d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f')
depends_on('python@3.6:', when='@0.4:', type=('build', 'run'))
depends_on('python@2.7:', type=('build', 'run'))
depends_on('py-flit', type='build')
depends_on('py-flit-core@2:3', when='@0.4:', type='build')
depends_on('py-flit', when='@:0.3', type='build')
depends_on('py-configparser@3.5:', when='^python@2.7', type=('build', 'run'))