Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{tools}[GCCcore/13.3.0] SlurmViewer v1.0.2 #22045

Merged
merged 12 commits into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# #
# Authors:
# - Patrick de Koning <[email protected]>
# - Prerak Mody <[email protected]>
# #
easyblock = 'PythonBundle'

name = 'SlurmViewer'
version = '1.0.2'

homepage = 'https://gitlab.com/lkeb/slurm_viewer'
description = """One-stop command to view the status of a Slurm cluster,
including nodes, jobs and resource utilization."""

toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
bedroge marked this conversation as resolved.
Show resolved Hide resolved

builddependencies = [
('binutils', '2.42'),
('hatchling', '1.24.2'),
('poetry', '1.8.3'),
]

dependencies = [
('Python', '3.12.3'),
('Python-bundle-PyPI', '2024.06'),
('pydantic', '2.9.1'),
]

use_pip = True

exts_list = [
('plotext', '5.2.8', {
'checksums': ['319a287baabeb8576a711995f973a2eba631c887aa6b0f33ab016f12c50ffebe'],
}),
('textual', '0.85.2', {
'checksums': ['2a416995c49d5381a81d0a6fd23925cb0e3f14b4f239ed05f35fa3c981bb1df2'],
}),
('textual-plotext', '0.2.1', {
'source_tmpl': 'textual_plotext-%(version)s.tar.gz',
'checksums': ['bc6f2d75d8e20dda6321f8254dc3decda8f41f60e6e70a3ddd83b652b890c081'],
}),
('asyncssh', '2.18.0', {
'checksums': ['1a322161c01f60b9719dc8f39f80db71e61f3f5e04abbc3420ce503126d87123'],
}),
('slurm-viewer', version, {
'source_tmpl': 'slurm_viewer-%(version)s-py3-none-any.whl',
'checksums': ['00baa6a9b26b36592e361486d58df3d68a8df970dfc66ebc2ba7cdd67994bfe0'],
}),
]

sanity_check_paths = {
'files': ['bin/slurm-viewer'],
'dirs': ['lib']
}

sanity_pip_check = True

modloadmsg = """Slurm Viewer uses a configuration file.
This is made by default (from v1.0.2) in the ~/.config/slurm-viewer/ directory.
You can also point to a settings file by setting the environment variable $SLURM_VIEW_CONFIG."""

moduleclass = 'tools'
Loading