summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-12-13 12:55:15 -0600
committerGitHub <noreply@github.com>2019-12-13 12:55:15 -0600
commit83baf35246c4de05cf08d18e384139c64f3dfe89 (patch)
tree8b9c3cd616dc6f0a510ee8c4dbc033ab1c9a6d31 /var
parent268914e7a29231da882457a6e4744c9661526a73 (diff)
downloadspack-83baf35246c4de05cf08d18e384139c64f3dfe89.tar.gz
spack-83baf35246c4de05cf08d18e384139c64f3dfe89.tar.bz2
spack-83baf35246c4de05cf08d18e384139c64f3dfe89.tar.xz
spack-83baf35246c4de05cf08d18e384139c64f3dfe89.zip
Add new aws-parallelcluster package (#14139)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/aws-parallelcluster/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/aws-parallelcluster/package.py b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
new file mode 100644
index 0000000000..93a8c06cc1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/aws-parallelcluster/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2019 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 import *
+
+
+class AwsParallelcluster(PythonPackage):
+ """AWS ParallelCluster is an AWS supported Open Source cluster management
+ tool to deploy and manage HPC clusters in the AWS cloud."""
+
+ homepage = "https://github.com/aws/aws-parallelcluster"
+ url = "https://pypi.io/packages/source/a/aws-parallelcluster/aws-parallelcluster-2.5.0.tar.gz"
+
+ version('2.5.0', sha256='3b0209342ea0d9d8cc95505456103ad87c2d4e35771aa838765918194efd0ad3')
+
+ depends_on('python@2.7:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-boto3@1.10.15:', type=('build', 'run'))
+ depends_on('py-future@0.16.0:0.18.2', type=('build', 'run'))
+ depends_on('py-tabulate@0.8.2:0.8.3', type=('build', 'run'))
+ depends_on('py-ipaddress@1.0.22:', type=('build', 'run'))
+ depends_on('py-enum34@1.1.6:', when='^python@:3.3', type=('build', 'run'))
+ depends_on('py-pyyaml@5.1.2:', type=('build', 'run'))
+ depends_on('py-configparser@3.5.0:3.8.1', when='^python@:2', type=('build', 'run'))