-
Notifications
You must be signed in to change notification settings - Fork 713
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 #9248 from Flamefire/20191111124625_new_pr_h5py290
{data}[fosscuda/2019b] h5py v2.9.0 w/ Python 3.7.4
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
easybuild/easyconfigs/h/h5py/h5py-2.9.0-fosscuda-2019b-Python-3.7.4.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,33 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'h5py' | ||
version = '2.9.0' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'https://www.h5py.org/' | ||
description = """HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, | ||
version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous | ||
amounts of data.""" | ||
|
||
toolchain = {'name': 'fosscuda', 'version': '2019b'} | ||
toolchainopts = {'usempi': True} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['9d41ca62daf36d6b6515ab8765e4c8c4388ee18e2a665701fef2b41563821002'] | ||
|
||
builddependencies = [('pkgconfig', '1.5.1', versionsuffix)] | ||
|
||
dependencies = [ | ||
('Python', '3.7.4'), | ||
('SciPy-bundle', '2019.10', versionsuffix), | ||
('HDF5', '1.10.5'), | ||
] | ||
|
||
use_pip = False | ||
download_dep_fail = True | ||
|
||
# to really use mpi enabled hdf5 we now seem to need a configure step, which is the reason we can't use pip | ||
prebuildopts = ' python setup.py configure --mpi --hdf5=$EBROOTHDF5 && ' | ||
|
||
moduleclass = 'data' |