forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
from spack.package import * | ||
|
||
|
||
class AwscliV2(AutotoolsPackage): | ||
class AwscliV2(PythonPackage): | ||
"""This package provides a unified command line interface to Amazon Web Services.""" | ||
|
||
homepage = "https://docs.aws.amazon.com/cli" | ||
|
@@ -19,14 +19,14 @@ class AwscliV2(AutotoolsPackage): | |
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("[email protected]:3.8.0", type=("build")) | ||
depends_on("py-pip@22:23", type=("build")) | ||
depends_on("[email protected]:0.4.6") | ||
depends_on("[email protected]:0.19") | ||
depends_on("[email protected]:40.0.1") | ||
depends_on("[email protected]:0.17.21") | ||
depends_on("[email protected]:0.2.7") | ||
depends_on("[email protected]:3.0.38") | ||
depends_on("[email protected]:1.8") | ||
depends_on("[email protected]:0.16.16") | ||
depends_on("[email protected]:2") | ||
depends_on("[email protected]:1.0") | ||
depends_on("[email protected]:1.26") | ||
depends_on("[email protected]:0.4.6", type=("build", "run")) | ||
depends_on("[email protected]:0.19", type=("build", "run")) | ||
depends_on("[email protected]:40.0.1", type=("build", "run")) | ||
depends_on("[email protected]:0.17.21", type=("build", "run")) | ||
depends_on("[email protected]:0.2.7", type=("build", "run")) | ||
depends_on("[email protected]:3.0.38", type=("build", "run")) | ||
depends_on("[email protected]:1.8", type=("build", "run")) | ||
depends_on("py-[email protected]:0.16.16", type=("build", "run")) | ||
depends_on("[email protected]:2", type=("build", "run")) | ||
depends_on("[email protected]:1.0", type=("build", "run")) | ||
depends_on("[email protected]:1.26", type=("build", "run")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
from spack.package import * | ||
|
||
|
||
class Awscrt(PythonPackage): | ||
class PyAwscrt(PythonPackage): | ||
"""Python 3 bindings for the AWS Common Runtime.""" | ||
|
||
homepage = "https://docs.aws.amazon.com/sdkref/latest/guide/common-runtime.html" | ||
|
@@ -16,5 +16,4 @@ class Awscrt(PythonPackage): | |
|
||
version("0.16.16", sha256="13075df2c1d7942fe22327b6483274517ee0f6ae765c4e6b6ae9ef5b4c43a827") | ||
|
||
depends_on("[email protected]:", type=("build", "run")) | ||
depends_on("py-setuptools", type=("build")) |