spack/var/spack/repos/builtin/packages/py-azure-storage-common/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

24 lines
946 B
Python

# Copyright 2013-2023 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.package import *
class PyAzureStorageCommon(PythonPackage):
"""Microsoft Azure Storage Common Client Library for Python."""
homepage = "https://github.com/Azure/azure-storage-python"
pypi = "azure-storage-common/azure-storage-common-2.1.0.tar.gz"
version("2.1.0", sha256="ccedef5c67227bc4d6670ffd37cec18fb529a1b7c3a5e53e4096eb0cf23dc73f")
version("1.4.2", sha256="4ec87c7537d457ec95252e0e46477e2c1ccf33774ffefd05d8544682cb0ae401")
depends_on("py-setuptools", type="build")
depends_on("py-azure-common@1.1.5:", 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"))