Add py-fastcov (#25268)
* Add py-fastcov * Update var/spack/repos/builtin/packages/py-fastcov/package.py
This commit is contained in:
parent
15653868c8
commit
8f238c03ad
24
var/spack/repos/builtin/packages/py-fastcov/package.py
Normal file
24
var/spack/repos/builtin/packages/py-fastcov/package.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright 2013-2021 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 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')
|
Loading…
Reference in New Issue
Block a user