
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
22 lines
717 B
Python
22 lines
717 B
Python
# Copyright 2013-2018 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 PyPytestCov(PythonPackage):
|
|
"""Pytest plugin for measuring coverage."""
|
|
|
|
homepage = "https://github.com/pytest-dev/pytest-cov"
|
|
url = "https://pypi.io/packages/source/p/pytest-cov/pytest-cov-2.3.1.tar.gz"
|
|
|
|
version('2.3.1', '8e7475454313a035d08f387ee6d725cb')
|
|
|
|
extends('python', ignore=r'bin/*')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-pytest@2.6.0:', type=('build', 'run'))
|
|
depends_on('py-coverage@3.7.1:', type=('build', 'run'))
|