summaryrefslogtreecommitdiff
path: root/var/spack/repos/tutorial
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-08-02 23:35:21 -0500
committerGitHub <noreply@github.com>2019-08-02 23:35:21 -0500
commitc36c7f2babf3b581a410329c45e60c7a60925b97 (patch)
tree8412b7d809849543d99ddc648522abba2a0caa1b /var/spack/repos/tutorial
parentccfaeecfeb912eb7c3074babcd6c7510ac17ea5e (diff)
downloadspack-c36c7f2babf3b581a410329c45e60c7a60925b97.tar.gz
spack-c36c7f2babf3b581a410329c45e60c7a60925b97.tar.bz2
spack-c36c7f2babf3b581a410329c45e60c7a60925b97.tar.xz
spack-c36c7f2babf3b581a410329c45e60c7a60925b97.zip
Add py-google-api-python-client package (#12254)
Diffstat (limited to 'var/spack/repos/tutorial')
-rw-r--r--var/spack/repos/tutorial/packages/py-google-api-python-client/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/tutorial/packages/py-google-api-python-client/package.py b/var/spack/repos/tutorial/packages/py-google-api-python-client/package.py
new file mode 100644
index 0000000000..1a00ce83c7
--- /dev/null
+++ b/var/spack/repos/tutorial/packages/py-google-api-python-client/package.py
@@ -0,0 +1,24 @@
+# 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 PyGoogleApiPythonClient(PythonPackage):
+ """The Google API Client for Python is a client library for accessing the
+ Plus, Moderator, and many other Google APIs."""
+
+ homepage = "http://github.com/google/google-api-python-client/"
+ url = "https://pypi.io/packages/source/g/google-api-python-client/google-api-python-client-1.7.10.tar.gz"
+
+ version('1.7.10', sha256='2e55a5c7b56233c68945b6804c73e253445933f4d485d4e69e321b38772b9dd6')
+
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-httplib2@0.9.2:', type=('build', 'run'))
+ depends_on('py-google-auth@1.4.1:', type=('build', 'run'))
+ depends_on('py-google-auth-httplib2@0.0.3:', type=('build', 'run'))
+ depends_on('py-six@1.6.1:', type=('build', 'run'))
+ depends_on('py-uritemplate@3.0.0:', type=('build', 'run'))