diff options
author | Sinan <sbulutw@gmail.com> | 2019-09-20 17:59:50 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-09-20 17:59:50 -0700 |
commit | 326c2718d5bd5cd954e4512e0e476141705e3f1b (patch) | |
tree | 06d1437006823aba950cb8763b32cecb267bbd76 | |
parent | e26b23e9806f02f8f0d1c32f7f669bf35235dff3 (diff) | |
download | spack-326c2718d5bd5cd954e4512e0e476141705e3f1b.tar.gz spack-326c2718d5bd5cd954e4512e0e476141705e3f1b.tar.bz2 spack-326c2718d5bd5cd954e4512e0e476141705e3f1b.tar.xz spack-326c2718d5bd5cd954e4512e0e476141705e3f1b.zip |
New package: py-gast (#12874)
-rw-r--r-- | var/spack/repos/builtin/packages/py-gast/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gast/package.py b/var/spack/repos/builtin/packages/py-gast/package.py new file mode 100644 index 0000000000..086bb7af8b --- /dev/null +++ b/var/spack/repos/builtin/packages/py-gast/package.py @@ -0,0 +1,18 @@ +# 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 PyGast(PythonPackage): + """Python AST that abstracts the underlying Python version""" + + homepage = "https://github.com/serge-sans-paille/gast" + url = "https://pypi.io/packages/source/g/gast/gast-0.3.2.tar.gz" + + version('0.3.2', sha256='5c7617f1f6c8b8b426819642b16b9016727ddaecd16af9a07753e537eba8a3a5') + + depends_on('py-setuptools', type='build') + depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) |