summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2018-11-12 16:55:49 -0800
committerPeter Scheibel <scheibel1@llnl.gov>2018-11-12 18:55:49 -0600
commit9e6721659365bd8871f419d974d83a0b34f340c3 (patch)
treef30787bad5dfb572fe8ec5ccfd351b6b29662379 /var
parentec7e5d3b8b21970045fc2cc9256d958f1d0e0a0b (diff)
downloadspack-9e6721659365bd8871f419d974d83a0b34f340c3.tar.gz
spack-9e6721659365bd8871f419d974d83a0b34f340c3.tar.bz2
spack-9e6721659365bd8871f419d974d83a0b34f340c3.tar.xz
spack-9e6721659365bd8871f419d974d83a0b34f340c3.zip
new package: PyH5glance (#9700)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-h5glance/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-h5glance/package.py b/var/spack/repos/builtin/packages/py-h5glance/package.py
new file mode 100644
index 0000000000..fa9cac74f3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-h5glance/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2018 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 PyH5glance(PythonPackage):
+ """H5Glance lets you explore HDF5 files in the terminal or
+ an HTML interface.
+ """
+
+ homepage = "https://github.com/European-XFEL/h5glance"
+ url = "https://pypi.io/packages/source/h/h5glance/h5glance-0.4.tar.gz"
+
+ version('0.4', sha256='03babaee0d481991062842796126bc9e6b11e2e6e7daba57c26f2b58bf3bbd32')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-h5py', type=('build', 'run'))
+ depends_on('py-python-htmlgen', type='run')