summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cov-core/package.py
blob: 31695bd865bfb98431af0053a2b550ac4eb63935 (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"
    pypi = "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'))