
- [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
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
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)
|
|
|
|
|
|
class PyAzureMultiapiStorage(PythonPackage):
|
|
"""Microsoft Azure Storage Client Library for Python with multi API
|
|
version support."""
|
|
|
|
homepage = "https://github.com/Azure/azure-multiapi-storage-python"
|
|
pypi = "azure-multiapi-storage/azure-multiapi-storage-0.3.5.tar.gz"
|
|
|
|
version('0.3.5', sha256='71c238c785786a159b3ffd587a5e7fa1d9a517b66b592ae277fed73a9fbfa2b0')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-azure-common', type=('build', 'run'))
|
|
depends_on('py-cryptography', type=('build', 'run'))
|
|
depends_on('py-python-dateutil', type=('build', 'run'))
|
|
depends_on('py-requests', type=('build', 'run'))
|
|
depends_on('py-azure-core', type=('build', 'run'))
|
|
depends_on('py-futures', when='^python@:2', type=('build', 'run'))
|
|
depends_on('py-azure-nspkg', when='^python@:2', type=('build', 'run'))
|