
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
19 lines
624 B
Python
19 lines
624 B
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyClickPlugins(PythonPackage):
|
|
"""An extension module for py-click to register external CLI
|
|
commands via setuptools entry-points."""
|
|
|
|
pypi = "click-plugins/click-plugins-1.0.4.tar.gz"
|
|
|
|
version('1.0.4', sha256='dfed74b5063546a137de99baaaf742b4de4337ad2b3e1df5ec7c8a256adc0847')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-click@3.0:', type=('build', 'run'))
|