summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/awscli-v2/package.py
blob: 49436945f9956ef3581736c9860e63e6b8dd83b7 (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
25
26
27
28
29
30
31
# 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 AwscliV2(PythonPackage):
    """This package provides a unified command line interface to Amazon Web Services."""

    homepage = "https://docs.aws.amazon.com/cli"
    url = "https://github.com/aws/aws-cli/archive/refs/tags/2.13.22.tar.gz"

    maintainers("climbfuji")

    version("2.13.22", sha256="dd731a2ba5973f3219f24c8b332a223a29d959493c8a8e93746d65877d02afc1")

    depends_on("python@3.8:", type=("build", "run"))
    depends_on("py-flit-core@3.7.1:3.8.0", type=("build"))
    depends_on("py-colorama@0.2.5:0.4.6", type=("build", "run"))
    depends_on("py-docutils@0.10:0.19", type=("build", "run"))
    depends_on("py-cryptography@3.3.2:40.0.1", type=("build", "run"))
    depends_on("py-ruamel-yaml@0.15:0.17.21", type=("build", "run"))
    depends_on("py-ruamel-yaml-clib@0.2:0.2.7", type=("build", "run"))
    depends_on("py-prompt-toolkit@3.0.24:3.0.38", type=("build", "run"))
    depends_on("py-distro@1.5:1.8", type=("build", "run"))
    depends_on("py-awscrt@0.16.4:0.16.16", type=("build", "run"))
    depends_on("py-python-dateutil@2.1:2", type=("build", "run"))
    depends_on("py-jmespath@0.7.1:1.0", type=("build", "run"))
    depends_on("py-urllib3@1.25.4:1.26", type=("build", "run"))