py-metpy: add new package (#21971)

This commit is contained in:
Adam J. Stewart 2021-02-26 12:51:16 -06:00 committed by GitHub
parent 2484ed0281
commit a6396d6190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,31 @@
# 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 PyMetpy(PythonPackage):
"""Collection of tools for reading, visualizing and performing calculations
with weather data."""
homepage = "https://github.com/Unidata/MetPy"
pypi = "MetPy/MetPy-1.0.tar.gz"
version('1.0', sha256='11b043aaa4e3d35db319e96bb9967eb9f73da653e155bca2d62f838108b100dc')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-setuptools-scm', type='build')
depends_on('py-importlib-metadata@1.0.0:', when='^python@:3.7.999', type=('build', 'run'))
depends_on('py-importlib-resources@1.3.0:', when='^python@:3.8.999', type=('build', 'run'))
depends_on('py-matplotlib@2.1.0:', type=('build', 'run'))
depends_on('py-numpy@1.16.0:', type=('build', 'run'))
depends_on('py-pandas@0.22.0:', type=('build', 'run'))
depends_on('py-pint@0.10.1:', type=('build', 'run'))
depends_on('py-pooch@0.1:', type=('build', 'run'))
depends_on('py-pyproj@2.3.0:2.999', type=('build', 'run'))
depends_on('py-scipy@1.0:', type=('build', 'run'))
depends_on('py-traitlets@4.3.0:', type=('build', 'run'))
depends_on('py-xarray@0.14.1:', type=('build', 'run'))