
- [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
26 lines
1.0 KiB
Python
26 lines
1.0 KiB
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 PyGriddataformats(PythonPackage):
|
|
"""The gridDataFormats package provides classes to unify reading
|
|
and writing n-dimensional datasets. One can read grid data from
|
|
files, make them available as a Grid object, and write out the
|
|
data again."""
|
|
|
|
homepage = "http://www.mdanalysis.org/GridDataFormats"
|
|
pypi = "GridDataFormats/GridDataFormats-0.5.0.tar.gz"
|
|
|
|
version('0.5.0', sha256='f317ed60708de22d1b2a76ce89a00f722d903291b1055ff1018d441870c39d69')
|
|
version('0.4.1', sha256='b362662c2dc475e2a3895fe044eaaa9a707bd660fd109a63dac84a47236690a3')
|
|
version('0.3.3', sha256='938f0efcb3bc2f58ec85048b933942da8a52c134170acc97cb095f09d3698fbd')
|
|
|
|
depends_on('python@2.7:')
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-numpy@1.0.3:', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|