summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-azure-storage-blob/package.py
blob: e263090f6bf834e914eb3b1af504cc083d5c0404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 PyAzureStorageBlob(PythonPackage):
    """Microsoft Azure Blob Storage Client Library for Python"""

    homepage = "https://github.com/Azure/azure-storage-python"
    pypi = "azure-storage-blob/azure-storage-blob-12.9.0.zip"
    maintainers("marcusboden")

    license("MIT")

    version("12.9.0", sha256="cff66a115c73c90e496c8c8b3026898a3ce64100840276e9245434e28a864225")

    depends_on("py-setuptools", type="build")
    depends_on("py-azure-core@1.10:1", type=("build", "run"))
    depends_on("py-msrest@0.6.21:", type=("build", "run"))
    depends_on("py-cryptography@2.1.4:", type=("build", "run"))