summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-descartes/package.py
blob: f47b7846aee848f9277e740270d5367e36b68e27 (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', sha256='135a502146af5ed6ff359975e2ebc5fa4b71b5432c355c2cafdc6dea1337035b')

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