
- [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
757 B
Python
22 lines
757 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 PyAntlr4Python3Runtime(PythonPackage):
|
|
"""This package provides runtime libraries required to use
|
|
parsers generated for the Python3 language by version 4 of
|
|
ANTLR (ANother Tool for Language Recognition).
|
|
"""
|
|
|
|
homepage = "https://www.antlr.org"
|
|
pypi = "antlr4-python3-runtime/antlr4-python3-runtime-4.7.2.tar.gz"
|
|
|
|
version('4.7.2', sha256='168cdcec8fb9152e84a87ca6fd261b3d54c8f6358f42ab3b813b14a7193bb50b')
|
|
|
|
depends_on('python@3:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|