summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-descartes/package.py
blob: ac5ed78fbca09965eb02ed389fbce291b691cddd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyDescartes(PythonPackage):
    """Use Shapely or GeoJSON-like geometric objects as matplotlib paths
       and patches"""

    homepage = "https://pypi.org/project/descartes/"
    url      = "https://pypi.io/packages/source/d/descartes/descartes-1.1.0.tar.gz"

    version('1.1.0', 'ac608090f3c9f6e0ce856fdc29944096')

    depends_on('py-setuptools', type='build')
    depends_on('py-matplotlib', type=('build', 'run'))