
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
28 lines
948 B
Python
28 lines
948 B
Python
# Copyright 2013-2021 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"
|
|
pypi = "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'))
|