# Copyright 2013-2023 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!")