spack/var/spack/repos/builtin/packages/py-azure-multiapi-storage/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [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
2021-01-02 12:12:00 -08:00

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'))