diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-06-17 00:34:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 23:34:18 -0600 |
commit | 10608edd24ba2bc8f02b27a481fce1b6195b775d (patch) | |
tree | 1765047436d253c5549dc89d2e28ea1c6f884042 | |
parent | 3adee93d149f60baede5d9e97d2a1676dbf15287 (diff) | |
download | spack-10608edd24ba2bc8f02b27a481fce1b6195b775d.tar.gz spack-10608edd24ba2bc8f02b27a481fce1b6195b775d.tar.bz2 spack-10608edd24ba2bc8f02b27a481fce1b6195b775d.tar.xz spack-10608edd24ba2bc8f02b27a481fce1b6195b775d.zip |
py-peachpy: add new package (#24373)
-rw-r--r-- | var/spack/repos/builtin/packages/py-peachpy/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-peachpy/package.py b/var/spack/repos/builtin/packages/py-peachpy/package.py new file mode 100644 index 0000000000..7ff0e52b44 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-peachpy/package.py @@ -0,0 +1,20 @@ +# 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 PyPeachpy(PythonPackage): + """Portable Efficient Assembly Codegen in Higher-level Python.""" + + homepage = "https://github.com/Maratyszcza/PeachPy" + git = "https://github.com/Maratyszcza/PeachPy.git" + + version('master', branch='master') + + depends_on('py-setuptools', type='build') + depends_on('py-opcodes@0.3.13:', type='build') + depends_on('py-six', type=('build', 'run')) + depends_on('py-enum34', when='^python@:3.3.999', type=('build', 'run')) |