new package: py-pytest-parallel (#29431)

* new package: py-pytest-parallel

* depend on python@3.7:

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Ryan Marcellino 2022-03-11 10:39:47 -05:00 committed by GitHub
parent 1caa3107b3
commit abab284996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2022 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 PyPytestParallel(PythonPackage):
"""A pytest plugin for parallel and concurrent testing."""
homepage = "https://github.com/browsertron/pytest-parallel"
pypi = "pytest-parallel/pytest-parallel-0.1.1.tar.gz"
version('0.1.1', sha256='9aac3fc199a168c0a8559b60249d9eb254de7af58c12cee0310b54d4affdbfab')
depends_on('python@3.7:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-pytest@3.0:', type=('build', 'run'))
depends_on('py-tblib', type=('build', 'run'))