summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-blight/package.py
blob: acbba9afeb9e4bbda0ee19deed2c523c77d1d421 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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 PyBlight(PythonPackage):
    """A catch-all compile-tool wrapper."""

    homepage = "https://github.com/trailofbits/blight"
    pypi = "blight/blight-0.0.47.tar.gz"

    maintainers("woodruffw")

    license("Apache-2.0")

    version("0.0.47", sha256="eb4a881adb98e03a0a855b95bfcddb0f4b3ca568b00cb45b571f047ae75c5667")

    variant("dev", default=False, description="Install dependencies to help with development")

    depends_on("python@3.7:", type=("build", "run"))

    # In process of changing build backend after 0.0.47 release.
    depends_on("py-setuptools", type="build")

    depends_on("py-click@7.1:8", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))
    depends_on("py-pydantic@1.7:1", type=("build", "run"))

    depends_on("py-flake8", type=("build", "run"), when="+dev")
    depends_on("py-black", type=("build", "run"), when="+dev")
    # blight uses pyproject.toml to configure isort. isort added
    # support in 5.0.0
    depends_on("py-isort@5.0.0:", type=("build", "run"), when="+dev")
    depends_on("py-pytest", type=("build", "run"), when="+dev")
    depends_on("py-pytest-cov", type=("build", "run"), when="+dev")
    depends_on("py-coverage+toml", type=("build", "run"), when="+dev")
    depends_on("py-twine", type=("build", "run"), when="+dev")
    depends_on("py-pdoc3", type=("build", "run"), when="+dev")
    depends_on("py-mypy", type=("build", "run"), when="@0.0.5:+dev")