diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin.mock/packages/cmake-client-inheritor/package.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/cmake-client-inheritor/package.py b/var/spack/repos/builtin.mock/packages/cmake-client-inheritor/package.py new file mode 100644 index 0000000000..bc058cc4fa --- /dev/null +++ b/var/spack/repos/builtin.mock/packages/cmake-client-inheritor/package.py @@ -0,0 +1,11 @@ +# 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.package import * # noqa: F401 +from spack.pkg.builtin.mock.cmake_client import CmakeClient + + +class CmakeClientInheritor(CmakeClient): + """A dumy package that inherits from one using cmake.""" |