45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# 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
|