summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael@ikkoku.de>2019-03-22 11:39:10 +0100
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-03-22 11:39:10 +0100
commitea227b9974555b7f86d090ec9e352ecf7dc7a0f9 (patch)
tree063fa27ee885f6d20d150bb160514804ca63985d /var
parent1599dce2aeda294ae803444beeddca7d8a6d06d0 (diff)
downloadspack-ea227b9974555b7f86d090ec9e352ecf7dc7a0f9.tar.gz
spack-ea227b9974555b7f86d090ec9e352ecf7dc7a0f9.tar.bz2
spack-ea227b9974555b7f86d090ec9e352ecf7dc7a0f9.tar.xz
spack-ea227b9974555b7f86d090ec9e352ecf7dc7a0f9.zip
py-hpccm: New package (#10957)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-hpccm/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-hpccm/package.py b/var/spack/repos/builtin/packages/py-hpccm/package.py
new file mode 100644
index 0000000000..fee945d1ed
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-hpccm/package.py
@@ -0,0 +1,20 @@
+# 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 PyHpccm(PythonPackage):
+ """HPC Container Maker (HPCCM - pronounced H-P-see-M) is an open source
+ tool to make it easier to generate container specification files."""
+
+ homepage = "https://github.com/NVIDIA/hpc-container-maker"
+ url = "https://github.com/NVIDIA/hpc-container-maker/archive/v19.2.0.tar.gz"
+
+ version('19.2.0', sha256='99eb0f48cfbdfb29815aed8bcd0fa8c5a857fd912a2bb9658b217b0712ca4af5')
+
+ depends_on('py-setuptools', type=('build', 'run'))
+ depends_on('py-enum34', type=('build', 'run'))
+ depends_on('py-six', type=('build', 'run'))