summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cov-core/package.py
blob: 8ecc781755485d9c68e8a010ef4924c649f67dd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2020 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 PyCovCore(PythonPackage):
    """plugin core for use by pytest-cov, nose-cov and nose2-cov"""

    homepage = "https://github.com/schlamar/cov-core"
    url      = "https://pypi.io/packages/source/c/cov-core/cov-core-1.15.0.tar.gz"

    version('1.15.0', sha256='4a14c67d520fda9d42b0da6134638578caae1d374b9bb462d8de00587dba764c')

    depends_on('py-setuptools', type='build')
    depends_on('py-coverage@3.6:', type=('build', 'run'))