summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cartopy/package.py
blob: 4cd54c6a9e65f1433f6f7c1120b65e1b3bb8fd5f (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
# Copyright 2013-2019 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 PyCartopy(PythonPackage):
    """Cartopy - a cartographic python library with matplotlib support."""

    homepage = "http://scitools.org.uk/cartopy/"
    url      = "https://github.com/SciTools/cartopy/archive/v0.16.0.tar.gz"

    version('0.16.0', 'f9e2e528d7758da7c64f824548a53f32')

    depends_on('py-setuptools@0.7.2:', type='build')
    depends_on('py-cython@0.15.1:',    type='build')
    depends_on('py-numpy@1.10.0:',  type=('build', 'run'))
    depends_on('py-shapely@1.5.6:', type=('build', 'run'))
    depends_on('py-pyshp@1.1.4:',   type=('build', 'run'))
    depends_on('py-six@1.3.0:',     type=('build', 'run'))
    depends_on('geos@3.3.3:')
    depends_on('proj@4.9.0:5')

    # optional dependecies
    depends_on('py-matplotlib@1.5.1:', type=('build', 'run'))
    depends_on('gdal@1.10.0:+python',  type=('build', 'run'))
    depends_on('py-pillow@1.7.8:',     type=('build', 'run'))
    depends_on('py-pyepsg@0.2.0:',     type=('build', 'run'))
    depends_on('py-scipy@0.10:',       type=('build', 'run'))
    depends_on('py-owslib@0.8.11:',    type=('build', 'run'))

    # testing dependencies
    depends_on('py-mock@1.0.1',    type='test')
    depends_on('py-pytest@3.0.0:', type='test')

    phases = ['build_ext', 'install']

    def build_ext_args(self, spec, prefix):
        args = ['-I{0}'.format(spec['proj'].prefix.include),
                '-L{0}'.format(spec['proj'].prefix.lib)
                ]
        return args