new file: s/scipy/scipy-1.2.0-Py-3.6.eb

This commit is contained in:
Lukáš Krupčík 2019-01-07 07:19:16 +01:00
parent 24b6845bb9
commit 12d7774d1f

View File

@ -0,0 +1,32 @@
# IT4Innovations 2019
easyblock = 'PythonPackage'
name = 'scipy'
version = '1.2.0'
homepage = 'http://scipy.org'
description = """SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering.
It includes modules for statistics, optimization, integration, linear algebra, Fourier transforms, signal and
image processing, ODE solvers, and more."""
toolchain = {'name': 'Py', 'version': '3.6'}
toolchainopts = {'pic': True}
source_urls = [PYPI_SOURCE]
sources = [SOURCELOWER_TAR_GZ]
dependencies = [
('numpy', '1.15.4'),
('mkl', '2017.4.239', '', True),
]
prebuildopts = 'unset LDFLAGS && '
sanity_check_paths = {'files': [], 'dirs': [
'lib/python3.6/site-packages/%(name)s-%(version)s-py3.6-linux-x86_64.egg/scipy'], }
sanity_check_commands = [
('python', '-c "import scipy; assert(scipy.__version__ == \'%(version)s\')"')]
moduleclass = 'python'