spack/var/spack/repos/builtin/packages/e4s-alc/package.py
FrederickDeny 98c08d277d
e4s-alc: add new package (#43750)
* Added e4s-cl@1.0.3

* add e4s-alc package

* removed trailing whitespace
2024-04-19 15:54:23 -06:00

29 lines
896 B
Python

# 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 E4sAlc(PythonPackage):
"""Container file creator, facilitating the generation of
Dockerfiles and Singularity definition files infused with OS packages,
spack packages and custom commands"""
maintainers("FrederickDeny", "PlatinumCD")
homepage = "https://github.com/E4S-Project/e4s-alc"
git = "https://github.com/E4S-Project/e4s-alc"
tags = ["e4s"]
license("MIT")
version("main", branch="main")
version("1.0.1", commit="262298128a4991ffc773b1bd835687fb6493311e")
depends_on("python@3.7:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pyyaml@6.0:", type=("build", "run"))