spack/var/spack/repos/builtin/packages/py-pytest-pep8/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

20 lines
692 B
Python

# Copyright 2013-2023 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.package import *
class PyPytestPep8(PythonPackage):
"""pytest plugin for efficiently checking PEP8 compliance"""
pypi = "pytest-pep8/pytest-pep8-1.0.6.tar.gz"
version("1.0.6", sha256="032ef7e5fa3ac30f4458c73e05bb67b0f036a8a5cb418a534b3170f89f120318")
depends_on("py-setuptools", type="build")
depends_on("py-pytest-cache", type=("build", "run"))
depends_on("py-pytest@2.4.2:", type=("build", "run"))
depends_on("py-pep8@1.3:", type=("build", "run"))