summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-05-14 18:52:31 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-05-15 10:52:31 +0900
commit733c2a2554aeb408a57b42cb1801dd6506b993c6 (patch)
tree590058be0e3a01f782ff6953f114924707e46940
parent63af41c0c69096d752d2b56e059c29924def2139 (diff)
downloadspack-733c2a2554aeb408a57b42cb1801dd6506b993c6.tar.gz
spack-733c2a2554aeb408a57b42cb1801dd6506b993c6.tar.bz2
spack-733c2a2554aeb408a57b42cb1801dd6506b993c6.tar.xz
spack-733c2a2554aeb408a57b42cb1801dd6506b993c6.zip
New package: py-spatialist (#11427)
-rw-r--r--var/spack/repos/builtin/packages/py-spatialist/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-spatialist/package.py b/var/spack/repos/builtin/packages/py-spatialist/package.py
new file mode 100644
index 0000000000..4b4e09beb9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-spatialist/package.py
@@ -0,0 +1,27 @@
+# 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 PySpatialist(PythonPackage):
+ """This package offers functionalities for user-friendly geo data
+ processing using GDAL and OGR."""
+
+ homepage = "https://github.com/johntruckenbrodt/spatialist"
+ url = "https://files.pythonhosted.org/packages/source/s/spatialist/spatialist-0.2.8.tar.gz"
+
+ version('0.2.8', sha256='97de7f9c0fbf28497ef28970bdf8093a152e691a783e7edad22998cb235154c6')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-progressbar2', type=('build', 'run'))
+ depends_on('py-pathos@0.2.0:', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-jupyter-core', type=('build', 'run'))
+ depends_on('py-ipython', type=('build', 'run'))
+ depends_on('py-ipywidgets', type=('build', 'run'))
+ depends_on('py-tblib', type=('build', 'run'))