summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/mpi/package.py
blob: 1e050ce247a826f9afa630cfad1f789d9919b614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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 Mpi(Package):
    """Virtual package for the Message Passing Interface."""

    homepage = "https://www.mpi-forum.org/"
    virtual = True

    def test_hello(self):
        print("Hello there!")