summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-fastcov/package.py
blob: 6b4a9f0b22dbadc8282b29bab4c70f824899c882 (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
# 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 PyFastcov(PythonPackage):
    """
    A parallelized gcov wrapper for generating intermediate coverage formats
    fast
    """

    homepage = "https://github.com/RPGillespie6/fastcov"
    pypi = "fastcov/fastcov-1.13.tar.gz"

    maintainers("haampie")

    license("MIT")

    version("1.13", sha256="ec8a5271f90a2f8b894cb999e262c33e225ed6072d9a6ca38f636f88cc0543e8")

    # Depends on gcov too, but that's installed with the compiler
    depends_on("python@3.5:", type=("build", "run"))
    depends_on("py-setuptools@38.3:", type="build")