
- [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
21 lines
668 B
Python
21 lines
668 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 PyStevedore(PythonPackage):
|
|
"""Manage Dynamic Plugins for Python Applications."""
|
|
|
|
homepage = "https://docs.openstack.org/stevedore/latest/"
|
|
pypi = "stevedore/stevedore-1.28.0.tar.gz"
|
|
|
|
version('1.28.0', sha256='f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b')
|
|
|
|
depends_on('python@2.6:')
|
|
|
|
depends_on('py-six@1.10.0:', type=('build', 'run'))
|
|
depends_on('py-pbr@2.0.0:2.1.0', type=('build', 'run'))
|