easyconfigs-it4i/archive/s/ScientificPython/ScientificPython-2.9.4-intel-2015b-Python-2.7.9.eb
easybuild 40b461ca6f fix
2019-11-06 13:38:09 +01:00

38 lines
1.1 KiB
Plaintext

easyblock = "PythonPackage"
name = 'ScientificPython'
version = '2.9.4'
homepage = 'https://sourcesup.cru.fr/projects/scientific-py/'
description = """ScientificPython is a collection of Python modules for scientific local_computing.
It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization,
and parallelization."""
toolchain = {'name': 'intel', 'version': '2015b'}
source_urls = ['https://sourcesup.renater.fr/frs/download.php/4570']
sources = [SOURCE_TAR_GZ]
python = 'Python'
pythonversion = '2.7.9'
pythonshortversion = '.'.join(pythonversion.split('.')[:-1])
versionsuffix = "-%s-%s" % (python, pythonversion)
dependencies = [
(python, pythonversion),
# older version of numpy than the one included in Python module required
# cfr.
# https://bitbucket.org/khinsen/scientificpython/issue/13/numpy-19-has-dropped-support-for
('numpy', '1.8.2', versionsuffix),
]
options = {'modulename': 'Scientific'}
sanity_check_paths = {
'files': [],
'dirs': ['lib/python%s/site-packages/Scientific' % pythonshortversion],
}
moduleclass = 'math'