
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
17 lines
581 B
Python
17 lines
581 B
Python
# Copyright 2013-2021 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)
|
|
|
|
|
|
class PyGoogle(PythonPackage):
|
|
"""Python bindings to the Google search engine."""
|
|
|
|
homepage = "http://breakingcode.wordpress.com/"
|
|
pypi = "google/google-3.0.0.tar.gz"
|
|
|
|
version('3.0.0', sha256='143530122ee5130509ad5e989f0512f7cb218b2d4eddbafbad40fd10e8d8ccbe')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-beautifulsoup4', type=('build', 'run'))
|