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.
|
2017-02-18 07:30:49 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-02-18 07:30:49 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyApacheLibcloud(PythonPackage):
|
|
|
|
"""Python library for multiple cloud provider APIs"""
|
|
|
|
|
|
|
|
homepage = "http://libcloud.apache.org"
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-1.2.1.tar.gz"
|
2017-02-18 07:30:49 +08:00
|
|
|
|
2017-08-07 00:45:00 +08:00
|
|
|
version('1.2.1', '912e6fb1f2d13f7d3b58ee982b9f9d1f')
|
2017-02-18 07:30:49 +08:00
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|