26 lines
766 B
Python
26 lines
766 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 PyPsmon(PythonPackage):
|
|
"""Monitors and limits process resource."""
|
|
|
|
homepage = "https://github.com/rkkautsar/psmon"
|
|
pypi = "psmon/psmon-1.1.1.tar.gz"
|
|
|
|
maintainers("valmar")
|
|
|
|
license("MIT")
|
|
|
|
version("1.1.1", sha256="ecbd4e3a34b5f20ac5c62e4cd1e19f7384c6d72f2dd7d66c7b4bc36b529b8385")
|
|
|
|
depends_on("python@3.6:", type=("build", "run"))
|
|
depends_on("py-poetry@0.12:", type="build")
|
|
depends_on("py-psutil@5.5:6.0", type=("build", "run"))
|
|
depends_on("py-loguru@0.2.5:0.3.0", type=("build", "run"))
|