summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-16 09:40:54 +0100
committerGitHub <noreply@github.com>2022-02-16 09:40:54 +0100
commit8654cc93ef227cf0c304fbf33e23655f89df8174 (patch)
treed7057061fc5b21a7b8d42095a0d059f355587c11 /var
parent5d58b94322e49570171428dcddb7c859cb9193ec (diff)
downloadspack-8654cc93ef227cf0c304fbf33e23655f89df8174.tar.gz
spack-8654cc93ef227cf0c304fbf33e23655f89df8174.tar.bz2
spack-8654cc93ef227cf0c304fbf33e23655f89df8174.tar.xz
spack-8654cc93ef227cf0c304fbf33e23655f89df8174.zip
py-entrypoints: add v0.4 (#28977)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-entrypoints/package.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-entrypoints/package.py b/var/spack/repos/builtin/packages/py-entrypoints/package.py
index f42aec03e5..3252e43520 100644
--- a/var/spack/repos/builtin/packages/py-entrypoints/package.py
+++ b/var/spack/repos/builtin/packages/py-entrypoints/package.py
@@ -9,11 +9,15 @@ from spack import *
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'))