diff options
-rw-r--r-- | var/spack/repos/builtin/packages/bulker/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bulker/package.py b/var/spack/repos/builtin/packages/bulker/package.py new file mode 100644 index 0000000000..5e3afd3985 --- /dev/null +++ b/var/spack/repos/builtin/packages/bulker/package.py @@ -0,0 +1,24 @@ +# 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 Bulker(PythonPackage): + """Bulker: multi-container environment manager""" + + homepage = "https://bulker.databio.org/" + pypi = "bulker/bulker-0.7.3.tar.gz" + + version("0.7.3", sha256="a7a3a97184d50d2247dc3b116f31f90c27435d9872c6845152ff46f5c4e39d50") + + depends_on("py-setuptools", type="build") + depends_on("py-yacman@0.8.4:", type=("build", "run")) + depends_on("py-pyyaml@5.1:", type=("build", "run")) + depends_on("py-logmuse@0.2.0:", type=("build", "run")) + depends_on("py-jinja2", type=("build", "run")) + depends_on("py-ubiquerg@0.5.1:", type=("build", "run")) + depends_on("py-psutil", type=("build", "run")) + depends_on("singularityce", type="run") |