
- [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
20 lines
692 B
Python
20 lines
692 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 PyPyqi(PythonPackage):
|
|
"""pyqi (canonically pronounced pie chee) is a Python framework designed
|
|
to support wrapping general commands in multiple types of interfaces,
|
|
including at the command line, HTML, and API levels."""
|
|
|
|
homepage = "https://pyqi.readthedocs.io"
|
|
pypi = "pyqi/pyqi-0.3.2.tar.gz"
|
|
|
|
version('0.3.2', sha256='8f1711835779704e085e62194833fed9ac2985e398b4ceac6faf6c7f40f5d15f')
|
|
|
|
depends_on('py-setuptools', type='build')
|