From 53e4f32a31c5b4b2fcc668eb8fe8be2f04133042 Mon Sep 17 00:00:00 2001 From: Desmond Orton Date: Thu, 27 May 2021 17:40:13 -0600 Subject: New package:py-coveralls (#23930) * New package:py-coveralls * dep fixes * added python constraint * pyyaml version constraint Co-authored-by: Adam J. Stewart Co-authored-by: Adam J. Stewart --- .../repos/builtin/packages/py-coveralls/package.py | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-coveralls/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-coveralls/package.py b/var/spack/repos/builtin/packages/py-coveralls/package.py new file mode 100644 index 0000000000..3691e32ad3 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-coveralls/package.py @@ -0,0 +1,26 @@ +# 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 PyCoveralls(PythonPackage): + """coveralls.io is a service for publishing your coverage stats online.""" + + homepage = "https://coveralls-python.readthedocs.io/en/latest/index.html" + pypi = "coveralls/coveralls-3.0.1.tar.gz" + + maintainers = ['dorton21'] + + version('3.0.1', sha256='cbb942ae5ef3d2b55388cb5b43e93a269544911535f1e750e1c656aef019ce60') + + variant('pyyaml', default=False, description="Enable useage of pyyaml") + + depends_on('python@3.5:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-pyyaml@3.10:', type=('build', 'run'), when='+pyyaml') + depends_on('py-coverage@4.1:5.999', type=('build', 'run')) + depends_on('py-docopt@0.6.1:', type=('build', 'run')) + depends_on('py-pyyaml@1.0.0:', type=('build', 'run')) -- cgit v1.2.3-60-g2f50