
- [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
22 lines
783 B
Python
22 lines
783 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 PyAgateExcel(PythonPackage):
|
|
"""agate-excel adds read support for Excel files (xls and xlsx) to
|
|
agate."""
|
|
|
|
homepage = "https://agate-excel.readthedocs.io/en/latest/"
|
|
pypi = "agate-excel/agate-excel-0.2.3.tar.gz"
|
|
|
|
version('0.2.3', sha256='8f255ef2c87c436b7132049e1dd86c8e08bf82d8c773aea86f3069b461a17d52')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-agate@1.5.0:', type=('build', 'run'))
|
|
depends_on('py-xlrd@0.9.4:', type=('build', 'run'))
|
|
depends_on('py-openpyxl@2.3.0:', type=('build', 'run'))
|