summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-12-29 02:11:12 -0600
committerGitHub <noreply@github.com>2020-12-29 09:11:12 +0100
commit8babd5345f76624cf1b1bff7243e1445df5c8054 (patch)
tree0a48f46b5a62a0ea4aa7ca258876fc5bdfa559b1 /var
parent05f8e080676f192d1530e952b57e2655d606ee40 (diff)
downloadspack-8babd5345f76624cf1b1bff7243e1445df5c8054.tar.gz
spack-8babd5345f76624cf1b1bff7243e1445df5c8054.tar.bz2
spack-8babd5345f76624cf1b1bff7243e1445df5c8054.tar.xz
spack-8babd5345f76624cf1b1bff7243e1445df5c8054.zip
py-geopy: add new package at v2.1.0 (#20601)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-geopy/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-geopy/package.py b/var/spack/repos/builtin/packages/py-geopy/package.py
new file mode 100644
index 0000000000..b66d1f75a6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-geopy/package.py
@@ -0,0 +1,21 @@
+# 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 PyGeopy(PythonPackage):
+ """geopy is a Python client for several popular geocoding web services."""
+
+ homepage = "https://github.com/geopy/geopy"
+ url = "https://pypi.io/packages/source/g/geopy/geopy-2.1.0.tar.gz"
+
+ maintainers = ['adamjstewart']
+
+ version('2.1.0', sha256='892b219413e7955587b029949af3a1949c6fbac9d5ad17b79d850718f6a9550f')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-geographiclib@1.49:1.999', type=('build', 'run'))