summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-xarray/package.py
blob: 4fe6acf8ad734c3eda46f49aaee79b5f15169d05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# 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 PyXarray(PythonPackage):
    """N-D labeled arrays and datasets in Python"""

    homepage = "https://github.com/pydata/xarray"
    pypi = "xarray/xarray-0.9.1.tar.gz"

    # 'xarray.tests' requires 'pytest'. Leave out of 'import_modules' to avoid
    # unnecessary dependency.
    import_modules = [
        'xarray', 'xarray.core', 'xarray.plot', 'xarray.util',
        'xarray.backends', 'xarray.coding'
    ]

    version('0.18.2', sha256='5d2e72a228286fcf60f66e16876bd27629a1a70bf64822c565f16515c4d10284')
    version('0.17.0', sha256='9c2edad2a4e588f9117c666a4249920b9717fb75703b96998cf65fcd4f60551f')
    version('0.16.2', sha256='38e8439d6c91bcd5b7c0fca349daf8e0643ac68850c987262d53526e9d7d01e4')
    version('0.14.0', sha256='a8b93e1b0af27fa7de199a2d36933f1f5acc9854783646b0f1b37fed9b4da091')
    version('0.13.0', sha256='80e5746ffdebb96b997dba0430ff02d98028ef3828e6db6106cbbd6d62e32825')
    version('0.12.0', sha256='856fd062c55208a248ac3784cac8d3524b355585387043efc92a4188eede57f3')
    version('0.11.0', sha256='636964baccfca0e5d69220ac4ecb948d561addc76f47704064dcbe399e03a818')
    version('0.9.1', sha256='89772ed0e23f0e71c3fb8323746374999ecbe79c113e3fadc7ae6374e6dc0525')

    variant('io', default=False, description='Build io backends')

    depends_on('python@2.7:2.8,3.5:',   when='@0.11:',  type=('build', 'run'))
    depends_on('python@3.5:',           when='@0.12',   type=('build', 'run'))
    depends_on('python@3.5.3:',         when='@0.13',   type=('build', 'run'))
    depends_on('python@3.6:',           when='@0.14:',  type=('build', 'run'))
    depends_on('python@3.7:',           when='@0.17:',  type=('build', 'run'))

    depends_on('py-setuptools',       when='@:0.15', type='build')
    depends_on('py-setuptools@38.4:', when='@0.16:', type=('build', 'run'))
    depends_on('py-setuptools@40.4:', when='@0.17:', type=('build', 'run'))
    depends_on('py-setuptools-scm',   when='@0.15:', type='build')

    depends_on('py-pandas@0.15.0:', when='@0.9.1',      type=('build', 'run'))
    depends_on('py-pandas@0.19.2:', when='@0.11:0.13',  type=('build', 'run'))
    depends_on('py-pandas@0.24:',   when='@0.14.0',     type=('build', 'run'))
    depends_on('py-pandas@0.25:',   when='@0.15:',      type=('build', 'run'))
    depends_on('py-pandas@1:',      when='@0.18:',      type=('build', 'run'))

    depends_on('py-numpy@1.7:',     when='@0.9.1',      type=('build', 'run'))
    depends_on('py-numpy@1.12:',    when='@0.11:0.13',  type=('build', 'run'))
    depends_on('py-numpy@1.14:',    when='@0.14.0',     type=('build', 'run'))
    depends_on('py-numpy@1.15:',    when='@0.15:',      type=('build', 'run'))
    depends_on('py-numpy@1.17:',    when='@0.18:',      type=('build', 'run'))

    depends_on('py-netcdf4',  when='+io', type=('build', 'run'))
    depends_on('py-h5netcdf', when='+io', type=('build', 'run'))
    depends_on('py-scipy',    when='+io', type=('build', 'run'))
    depends_on('py-pydap',    when='+io', type=('build', 'run'))
    depends_on('py-zarr',     when='+io', type=('build', 'run'))
    depends_on('py-fsspec',   when='+io', type=('build', 'run'))
    depends_on('py-cftime',   when='+io', type=('build', 'run'))
    depends_on('py-rasterio', when='+io', type=('build', 'run'))
    depends_on('py-cfgrib',   when='+io', type=('build', 'run'))
    depends_on('py-pooch',    when='+io', type=('build', 'run'))