summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-azure-keyvault-secrets/package.py
blob: 819df92ca0e774e56ff45397102bc1ce082bd4f6 (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)


class PyAzureKeyvaultSecrets(PythonPackage):
    """Microsoft Azure Key Vault Secrets Client Library for Python."""

    homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-secrets"
    pypi = "azure-keyvault-secrets/azure-keyvault-secrets-4.1.0.zip"

    version('4.1.0', sha256='4f3bfac60e025e01dd1c1998b73649d45d706975356c0cf147174cf5a6ddf8be')

    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'))
    depends_on('py-azure-keyvault-nspkg', when='^python@:2', type=('build', 'run'))
    depends_on('py-enum34@1.0.4:', when='^python@:3.3', type=('build', 'run'))
    depends_on('py-typing', when='^python@:3.4', type=('build', 'run'))