summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-fastcov/package.py
blob: e512759257097d3a7b0a299d0bea702231bf605d (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
# Copyright 2013-2022 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']

    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')