-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22045 from prerakmody/develop
{tools}[GCCcore/13.3.0] SlurmViewer v1.0.2
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
easybuild/easyconfigs/s/SlurmViewer/SlurmViewer-1.0.2-GCCcore-13.3.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'} | ||
|
||
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' |