diff options
author | Tristan Carel <tristan.carel@epfl.ch> | 2024-03-28 10:01:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 10:01:01 +0100 |
commit | 0b2c370a83e573349d5665d5a2eeaa25ffcf72e8 (patch) | |
tree | be8d08172b6312395230a0a85469f514c4d05e0a /var | |
parent | 6a9ee480bf4197710481c7e3091d27422b845168 (diff) | |
download | spack-0b2c370a83e573349d5665d5a2eeaa25ffcf72e8.tar.gz spack-0b2c370a83e573349d5665d5a2eeaa25ffcf72e8.tar.bz2 spack-0b2c370a83e573349d5665d5a2eeaa25ffcf72e8.tar.xz spack-0b2c370a83e573349d5665d5a2eeaa25ffcf72e8.zip |
py-pytest-mpi: new package starting at 0.6 (#43368)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytest-mpi/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-mpi/package.py b/var/spack/repos/builtin/packages/py-pytest-mpi/package.py new file mode 100644 index 0000000000..3efc1c6803 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytest-mpi/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2024 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.package import * + + +class PyPytestMpi(PythonPackage): + """Pytest plugin to collect information from tests.""" + + homepage = "https://pytest-mpi.readthedocs.io" + pypi = "pytest-mpi/pytest-mpi-0.6.tar.gz" + + license("BSD-3-Clause") + + maintainers("tristan0x") + + version("0.6", sha256="09b3cd3511f8f3cd4d205f54d4a7223724fed0ab68b872ed1123d312152325a9") + + depends_on("py-setuptools@42:", type="build") + depends_on("py-pytest@3.4:", type=("build", "run")) |