
- [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
23 lines
758 B
Python
23 lines
758 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyUsgs(PythonPackage):
|
|
"""Client library for interfacing with USGS datasets"""
|
|
|
|
homepage = "https://github.com/kapadia/usgs"
|
|
pypi = "usgs/usgs-0.2.7.tar.gz"
|
|
|
|
maintainers = ['adamjstewart']
|
|
|
|
version('0.2.7', sha256='484e569ea1baf9574e11ccf15219957364690dcf06ee3d09afef030df944e79b')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-click@4.0:', type=('build', 'run'))
|
|
depends_on('py-requests@2.7.0:', type=('build', 'run'))
|
|
depends_on('py-requests-futures@0.9.5:', type=('build', 'run'))
|