summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-08-10 11:52:10 -0500
committerGitHub <noreply@github.com>2019-08-10 11:52:10 -0500
commit8e4d60645fb45e37c7a947b3a86219e5fd15c194 (patch)
treeae40e850c1617190b2789501f64b90f075e07866 /var
parent706d57bd23df6d85996e4d5dee95610d79cf24db (diff)
downloadspack-8e4d60645fb45e37c7a947b3a86219e5fd15c194.tar.gz
spack-8e4d60645fb45e37c7a947b3a86219e5fd15c194.tar.bz2
spack-8e4d60645fb45e37c7a947b3a86219e5fd15c194.tar.xz
spack-8e4d60645fb45e37c7a947b3a86219e5fd15c194.zip
Add py-geeup package (#12367)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-geeup/package.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-geeup/package.py b/var/spack/repos/builtin/packages/py-geeup/package.py
new file mode 100644
index 0000000000..6e66dc2ffb
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-geeup/package.py
@@ -0,0 +1,34 @@
+# 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 PyGeeup(PythonPackage):
+ """Simple Client for Earth Engine Uploads with Selenium Support."""
+
+ homepage = "https://github.com/samapriya/geeup"
+ url = "https://pypi.io/packages/source/g/geeup/geeup-0.2.4.tar.gz"
+
+ version('0.2.4', sha256='20f62306ea900d7fa28a97cc92204716212dc030c50a6ac8214772a61a1a83fe')
+
+ depends_on('py-setuptools@38.3.0:', type='build')
+ depends_on('py-earthengine-api@0.1.87:', type=('build', 'run'))
+ depends_on('py-requests@2.10.0:', type=('build', 'run'))
+ depends_on('py-retrying@1.3.3:', type=('build', 'run'))
+ depends_on('py-beautifulsoup4@4.5.1:', type=('build', 'run'))
+ depends_on('py-pandas@0.23.0:', type=('build', 'run'))
+ depends_on('py-psutil@5.4.5:', type=('build', 'run'))
+ depends_on('py-requests-toolbelt@0.7.0:', type=('build', 'run'))
+ depends_on('py-pytest@3.0.0:', type=('build', 'test'))
+ depends_on('py-future@0.16.0:', type=('build', 'run'))
+ depends_on('py-google-cloud-storage@1.1.1:', type=('build', 'run'))
+ depends_on('py-selenium@3.13.0:', type=('build', 'run'))
+ depends_on('py-pysmartdl', type=('build', 'run'))
+ depends_on('py-pysmartdl@1.2.5', type=('build', 'run'), when='^python@:3.3')
+ depends_on('py-pysmartdl@1.3.1:', type=('build', 'run'), when='^python@3.4:')
+ depends_on('py-pathlib@1.0.1:', type=('build', 'run'))
+ depends_on('py-lxml@4.1.1:', type=('build', 'run'))
+ depends_on('py-oauth2client@4.1.3:', type=('build', 'run'))