summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-globus-sdk/package.py
blob: f9909ea5d81fcdb8cb7ca0eaba3e804b7582306a (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-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 PyGlobusSdk(PythonPackage):
    """
    Globus SDK for Python
    """

    homepage = "https://github.com/globus/globus-sdk-python"
    pypi     = "globus-sdk/globus-sdk-3.0.2.tar.gz"

    maintainers = ['hategan']

    version('3.0.2', sha256='765b577b37edac70c513179607f1c09de7b287baa855165c9dd68de076d67f16')

    depends_on('python@3.6:', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('py-requests@2.19.1:2', type=('build', 'run'))
    depends_on('py-pyjwt@2.0.0:2+crypto', type=('build', 'run'))
    depends_on('py-cryptography@2.0:3.3,3.4.1:3.6', type=('build', 'run'))