1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2013-2020 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 PyAzureMgmtDatamigration(PythonPackage):
"""Microsoft Azure Data Migration Client Library for Python."""
homepage = "https://github.com/Azure/azure-sdk-for-python"
url = "https://pypi.io/packages/source/a/azure-mgmt-datamigration/azure-mgmt-datamigration-4.0.0.zip"
version('4.0.0', sha256='1efda568d67af911156591eb308432b5f9a56075b57ac0a5dd9f7aee17d79217')
version('0.1.0', sha256='e754928992743f54d999800a5e0679ee3e91d804d23a25f12c2e6f2f86cd05df')
depends_on('py-setuptools', type='build')
depends_on('py-msrest@0.5.0:', when='@4:', type=('build', 'run'))
depends_on('py-msrestazure@0.4.32:1.999', when='@4:', type=('build', 'run'))
depends_on('py-msrestazure@0.4.27:1.999', type=('build', 'run'))
depends_on('py-azure-common@1.1:1.999', type=('build', 'run'))
depends_on('py-azure-mgmt-nspkg', when='@4: ^python@:2', type=('build', 'run'))
|