summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-flake8-polyfill/package.py
blob: a8ab9d289466a690ab71657ee96aea7c9c16d488 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyFlake8Polyfill(PythonPackage):
    """flake8-polyfill is a package that provides some compatibility helpers
    for Flake8 plugins that intend to support Flake8 2.x and 3.x
    simultaneously.
    """

    homepage = "https://gitlab.com/pycqa/flake8-polyfill"
    pypi = "flake8-polyfill/flake8-polyfill-1.0.2.tar.gz"

    version("1.0.2", sha256="e44b087597f6da52ec6393a709e7108b2905317d0c0b744cdca6208e670d8eda")

    depends_on("py-setuptools", type="build")
    depends_on("py-flake8", type=("build", "run"))