2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-05-28 08:03:15 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-05-28 08:03:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PyGoogleApitools(PythonPackage):
|
|
|
|
"""client libraries for humans"""
|
|
|
|
|
|
|
|
homepage = "https://github.com/google/apitools"
|
|
|
|
pypi = "google-apitools/google-apitools-0.5.32.tar.gz"
|
|
|
|
|
|
|
|
maintainers = ['dorton21']
|
|
|
|
|
|
|
|
version('0.5.32', sha256='c3763e52289f61e21c41d5531e20fbda9cc8484a088b8686fd460770db8bad13')
|
|
|
|
|
|
|
|
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-httplib2@0.8:', type=('build', 'run'))
|
|
|
|
depends_on('py-fasteners@0.14:', type=('build', 'run'))
|
|
|
|
depends_on('py-oauth2client@1.4.12:', type=('build', 'run'))
|
|
|
|
depends_on('py-six@1.12.0:', type=('build', 'run'))
|