-
Notifications
You must be signed in to change notification settings - Fork 703
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 #21475 from PetrKralCZ/20240924144326_new_pr_prett…
…y-yaml2470 {lib}[GCCcore/12.3.0] pretty-yaml v24.7.0
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/p/pretty-yaml/pretty-yaml-24.7.0-GCCcore-12.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,31 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'pretty-yaml' | ||
local_mod = 'pyaml' | ||
version = '24.7.0' | ||
|
||
homepage = 'https://github.com/mk-fg/pretty-yaml' | ||
description = """PyYAML-based python module to produce pretty and readable YAML-serialized data. | ||
This module is for serialization only, see ruamel.yaml module for literate YAML | ||
parsing (keeping track of comments, spacing, line/column numbers of values, etc).""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://pypi.python.org/packages/source/p/%s/' % local_mod] | ||
sources = ['%s-%%(version)s.tar.gz' % local_mod] | ||
checksums = ['5d0fdf9e681036fb263a783d0298fc3af580a6e2a6cf1a3314ffc48dc3d91ccb'] | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('PyYAML', '6.0'), | ||
] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
sanity_pip_check = True | ||
|
||
options = {'modulename': local_mod} | ||
|
||
moduleclass = 'lib' |