diff options
author | Milton Woods <miltonjwoods@gmail.com> | 2019-07-05 00:12:54 +1000 |
---|---|---|
committer | Elizabeth Fischer <elizabeth.fischer@columbia.edu> | 2019-07-04 10:12:54 -0400 |
commit | e7a3f703be1395d597fe38566c5a952a17d1c0e0 (patch) | |
tree | d5a43417ef28e894b01558d39ba9594575e84fda /var | |
parent | 54e87c8da06401b601c3cbfd2e92354dc7d8769b (diff) | |
download | spack-e7a3f703be1395d597fe38566c5a952a17d1c0e0.tar.gz spack-e7a3f703be1395d597fe38566c5a952a17d1c0e0.tar.bz2 spack-e7a3f703be1395d597fe38566c5a952a17d1c0e0.tar.xz spack-e7a3f703be1395d597fe38566c5a952a17d1c0e0.zip |
py-antlr4-python3-runtime: new package (#11890)
* py-antlr4-python3-runtime: new package
* py-antlr4-python3-runtime: fix for flake8
* py-antlr4-python3-runtime: indent docstring
* py-antlr4-python3-runtime: clarify role of this package vs ANTLR in docstring
* py-antlr4-python3-runtime: remove whitespace at end of line
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-antlr4-python3-runtime/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-antlr4-python3-runtime/package.py b/var/spack/repos/builtin/packages/py-antlr4-python3-runtime/package.py new file mode 100644 index 0000000000..58e081045a --- /dev/null +++ b/var/spack/repos/builtin/packages/py-antlr4-python3-runtime/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2019 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" + url = "https://pypi.io/packages/source/a/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') |