diff options
author | Ethan Stam <33101855+EthanS94@users.noreply.github.com> | 2020-12-04 02:13:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 10:13:45 +0100 |
commit | f391b2e8e54c932201525a11bd20391962e1b58e (patch) | |
tree | 2caa9f27c1e5b5c96baf4b2d4876b9f86aed4f7e /var | |
parent | 61f0f840d4c04113169de817a23ad60fb7c0dd40 (diff) | |
download | spack-f391b2e8e54c932201525a11bd20391962e1b58e.tar.gz spack-f391b2e8e54c932201525a11bd20391962e1b58e.tar.bz2 spack-f391b2e8e54c932201525a11bd20391962e1b58e.tar.xz spack-f391b2e8e54c932201525a11bd20391962e1b58e.zip |
py-cinemasci: new package at v1.3 (#20239)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-cinemasci/package.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cinemasci/package.py b/var/spack/repos/builtin/packages/py-cinemasci/package.py new file mode 100644 index 0000000000..b90e979f1f --- /dev/null +++ b/var/spack/repos/builtin/packages/py-cinemasci/package.py @@ -0,0 +1,27 @@ +# Copyright 2013-2020 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 PyCinemasci(PythonPackage): + """A set of python tools for reading, writing and viewing Cinema + databases""" + + homepage = "https://github.com/cinemascience" + url = "https://pypi.io/packages/source/c/cinemasci/cinemasci-1.3.tar.gz" + + maintainers = ['EthanS94'] + + version('1.3', sha256='c024ca9791de9d78e5dad3fd11e8f87d8bc1afa5830f2697d7ec4116a5d23c20') + + depends_on('hdf5~mpi') + depends_on('pil', type=('build', 'run')) + depends_on('python@3:', type=('build', 'run')) + depends_on('py-h5py~mpi', type=('build', 'run')) + depends_on('py-ipywidgets', type=('build', 'run')) + depends_on('py-jupyterlab', type=('build', 'run')) + depends_on('py-pandas', type=('build', 'run')) + depends_on('py-setuptools', type=('build')) |