new package: py-nose-cov (#13571)

* new package: py-nose-cov

* add missing dependencies
This commit is contained in:
Andreas Baumbach 2019-11-05 19:57:31 +01:00 committed by Adam J. Stewart
parent 74c81c0fc3
commit 68a34a11bc

View File

@ -0,0 +1,19 @@
# Copyright 2013-2019 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 PyNoseCov(PythonPackage):
"""This plugin produces coverage reports."""
homepage = "http://bitbucket.org/memedough/nose-cov/overview"
url = "https://pypi.io/packages/source/n/nose-cov/nose-cov-1.6.tar.gz"
version('1.6', sha256='8bec0335598f1cc69e3262cc50d7678c1a6010fa44625ce343c4ec1500774412')
depends_on('py-setuptools', type='build')
depends_on('py-nose@0.11.4:', type=('build', 'run'))
depends_on('py-cov-core@1.6:', type=('build', 'run'))