2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2018-02-23 01:47:05 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-02-23 01:47:05 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyStevedore(PythonPackage):
|
|
|
|
"""Manage Dynamic Plugins for Python Applications."""
|
|
|
|
|
|
|
|
homepage = "https://docs.openstack.org/stevedore/latest/"
|
|
|
|
url = "https://pypi.io/packages/source/s/stevedore/stevedore-1.28.0.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.28.0', sha256='f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b')
|
2018-02-23 01:47:05 +08:00
|
|
|
|
|
|
|
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'))
|