forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: absl-py-2.1.0-GCCcore-13.3.0.eb
- Loading branch information
1 parent
f96721c
commit 4361952
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
easybuild/easyconfigs/a/absl-py/absl-py-2.1.0-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,28 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'absl-py' | ||
version = '2.1.0' | ||
|
||
homepage = 'https://github.com/abseil/abseil-py' | ||
description = """absl-py is a collection of Python library code for building Python | ||
applications. The code is collected from Google's own Python code base, and has | ||
been extensively tested and used in production.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
|
||
builddependencies = [('binutils', '2.42')] | ||
|
||
dependencies = [('Python', '3.12.3')] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
('absl-py', version, { | ||
'modulename': 'absl', | ||
'checksums': ['7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'tools' |