diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2019-12-06 12:58:59 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-06 11:58:59 -0600 |
commit | f069a3feda43ebc436e404dad66dfaa06055e35a (patch) | |
tree | fa2ed2cba7b5dd6fc4511d36ca28573f1bd7bb7a | |
parent | b0f59484d33b260eb5bb23304ded069884c1886b (diff) | |
download | spack-f069a3feda43ebc436e404dad66dfaa06055e35a.tar.gz spack-f069a3feda43ebc436e404dad66dfaa06055e35a.tar.bz2 spack-f069a3feda43ebc436e404dad66dfaa06055e35a.tar.xz spack-f069a3feda43ebc436e404dad66dfaa06055e35a.zip |
Add h5sh python package (#14001)
* Add h5sh package
* Fix requirements and update version
-rw-r--r-- | var/spack/repos/builtin/packages/py-h5sh/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-h5sh/package.py b/var/spack/repos/builtin/packages/py-h5sh/package.py new file mode 100644 index 0000000000..ecd6a98a61 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-h5sh/package.py @@ -0,0 +1,25 @@ +# 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 PyH5sh(PythonPackage): + """Shell-like environment for HDF5.""" + + homepage = "https://pypi.python.org/pypi/h5sh" + url = "https://github.com/sethrj/h5sh/archive/v0.1.1.tar.gz" + + maintainers = ['sethrj'] + + version('0.1.1', sha256='111989d8200d1da8e150aee637a907e524ca0f98d5005a55587cba0d94d9c4a0') + + depends_on('py-setuptools', type=('build', 'run')) + depends_on('py-h5py', type=('build', 'run')) + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-prompt-toolkit@2:', type=('build', 'run')) + depends_on('py-pygments', type=('build', 'run')) + depends_on('py-six', type=('build', 'run')) + depends_on('py-pytest', type='test') |