summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cloudauthz/package.py
blob: a10399580971f75cccdbf9c71996946d15854616 (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
24
# 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 PyCloudauthz(PythonPackage):
    """Implements means of authorization delegation on cloud-based resource providers."""

    homepage = "https://github.com/galaxyproject/cloudauthz"
    pypi = "cloudauthz/cloudauthz-0.6.0.tar.gz"

    license("MIT")

    version("0.6.0", sha256="7e62f3ae04b1842540ca484717d40bd9ec17c6764dd842c1f73f6290b9b54ac1")

    depends_on("python@3:", type=("build", "run"))
    depends_on("py-setuptools", type="build")

    depends_on("py-requests@2.18.4:", type=("build", "run"))
    depends_on("py-adal@1.0.2:", type=("build", "run"))