-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bf2dbe
commit f2b4b8c
Showing
2 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
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
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' |