summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-12-29 04:56:24 -0600
committerGitHub <noreply@github.com>2020-12-29 11:56:24 +0100
commit8f929707147c49606d00386a10161529dad4ec56 (patch)
tree8d8e50d8eb0a6a5a2920da4b36a6f8e3edbd01d5 /var
parent03844b581a6ceedcbaf7cbb86babf10615caf2b7 (diff)
downloadspack-8f929707147c49606d00386a10161529dad4ec56.tar.gz
spack-8f929707147c49606d00386a10161529dad4ec56.tar.bz2
spack-8f929707147c49606d00386a10161529dad4ec56.tar.xz
spack-8f929707147c49606d00386a10161529dad4ec56.zip
py-geoplot: add new package at v0.4.1 (#20603)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-geoplot/package.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-geoplot/package.py b/var/spack/repos/builtin/packages/py-geoplot/package.py
new file mode 100644
index 0000000000..0d828b58e6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-geoplot/package.py
@@ -0,0 +1,31 @@
+# Copyright 2013-2020 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 PyGeoplot(PythonPackage):
+ """geoplot is a high-level Python geospatial plotting library.
+
+ It's an extension to cartopy and matplotlib which makes mapping easy:
+ like seaborn for geospatial."""
+
+ homepage = "https://github.com/ResidentMario/geoplot"
+ url = "https://pypi.io/packages/source/g/geoplot/geoplot-0.4.1.tar.gz"
+
+ maintainers = ['adamjstewart']
+
+ version('0.4.1', sha256='eb073436c5a1cb7f97caa217cdb109e6cad4f3774e657757005e3f0f5a3183ca')
+
+ depends_on('python@3.6.0:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-seaborn', type=('build', 'run'))
+ depends_on('py-pandas', type=('build', 'run'))
+ depends_on('py-geopandas', type=('build', 'run'))
+ depends_on('py-cartopy', type=('build', 'run'))
+ depends_on('py-descartes', type=('build', 'run'))
+ depends_on('py-mapclassify@2.1:', type=('build', 'run'))
+ depends_on('py-contextily@1.0.0:', type=('build', 'run'))