
- [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
703 B
Python
22 lines
703 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 PyPytestFlake8(PythonPackage):
|
|
"""pytest plugin to check FLAKE8 requirements."""
|
|
|
|
homepage = "https://github.com/tholo/pytest-flake8"
|
|
pypi = "pytest-flake8/pytest-flake8-0.8.1.tar.gz"
|
|
|
|
version('0.8.1', sha256='aa10a6db147485d71dad391d4149388904c3072194d51755f64784ff128845fd')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
# Install requires:
|
|
depends_on('py-flake8@3.0:', type=('build', 'run'))
|
|
depends_on('py-pytest@2.8:', type=('build', 'run'))
|