blob: 7fc82ed24a6a035a15b75892725ffdc90cbc2335 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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 *
class PyPsijPython(PythonPackage):
"""PSI/J is an abstraction layer over cluster schedulers to write scheduler
agnostic HPC applications."""
homepage = "https://www.exaworks.org/"
git = "https://github.com/exaworks/psij-python.git"
pypi = "psij-python/psij-python-0.1.0.post2.tar.gz"
maintainers = ["andre-merzky"]
version(
"0.1.0.post2", sha256="78f4fb147248be479aa6128b583dff9052698c49f36c6e9811b4c3f9db326043"
)
depends_on("python@3.7:", type=("build", "run"))
depends_on("py-filelock", type=("build", "run"))
depends_on("py-psutil", type=("build", "run"))
depends_on("py-pystache", type=("build", "run"))
depends_on("py-setuptools", type="build")
|