blob: 3586d107a79c1efb0289a24f6f9f1fcf2787abed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2022 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 PyAzureKeyvaultCertificates(PythonPackage):
"""Microsoft Azure Key Vault Certificates Client Library for Python."""
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-certificates"
pypi = "azure-keyvault-certificates/azure-keyvault-certificates-4.1.0.zip"
version("4.1.0", sha256="544f56480619e1db350f2e7b117b22af778e02174bd6bcb0af9ae00c50353419")
depends_on("py-setuptools", type="build")
depends_on("py-azure-core@1.2.1:1", type=("build", "run"))
depends_on("py-msrest@0.6.0:", type=("build", "run"))
|