Merge branch 'it4i-salomon'

This commit is contained in:
Lukáš Krupčík 2018-01-08 14:00:15 +01:00
commit c3c265a224
4 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# IT4Innovations 2018
easyblock = 'PythonPackage'
name = 'attrs'
version = '17.4.0'
homepage = 'http://www.attrs.org/'
description = 'Classes Without Boilerplate'
toolchain = {'name': 'Py', 'version': '3.6'}
source_urls = [PYPI_SOURCE]
sources = [SOURCE_TAR_GZ]
options = {'modulename': 'attr'}
sanity_check_paths = {
'files': [],
'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'],
}
moduleclass = 'python'

View File

@ -0,0 +1,21 @@
# IT4Innovations 2018
easyblock = 'PythonPackage'
name = 'pluggy'
version = '0.6.0'
homepage = 'https://github.com/pytest-dev/pluggy'
description = 'Plugin and hook calling mechanisms for python.'
toolchain = {'name': 'Py', 'version': '3.6'}
source_urls = [PYPI_SOURCE]
sources = [SOURCE_TAR_GZ]
sanity_check_paths = {
'files': [],
'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'],
}
moduleclass = 'python'

View File

@ -0,0 +1,27 @@
# IT4Innovations 2018
easyblock = 'PythonPackage'
name = 'pytest'
version = '3.3.2'
homepage = 'http://pytest.org'
description = 'Simple powerful testing with Python'
toolchain = {'name': 'Py', 'version': '3.6'}
source_urls = [PYPI_SOURCE]
sources = [SOURCE_TAR_GZ]
dependencies = [
('six', '1.11.0'),
('pluggy', '0.6.0'),
('attrs', '17.4.0'),
]
sanity_check_paths = {
'files': [],
'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6.egg'],
}
moduleclass = 'python'

View File

@ -11,6 +11,8 @@ description = """SciPy (pronounced 'Sigh Pie') is open-source software for mathe
image processing, ODE solvers, and more.""" image processing, ODE solvers, and more."""
toolchain = {'name': 'Py', 'version': '3.6'} toolchain = {'name': 'Py', 'version': '3.6'}
toolchainopts = {'pic': True}
source_urls = [PYPI_SOURCE] source_urls = [PYPI_SOURCE]
sources = [SOURCELOWER_TAR_GZ] sources = [SOURCELOWER_TAR_GZ]
@ -19,6 +21,8 @@ dependencies = [
('mkl', '2017.4.239', '', True), ('mkl', '2017.4.239', '', True),
] ]
prebuildopts = 'unset LDFLAGS && '
sanity_check_paths = { sanity_check_paths = {
'files': [], 'files': [],
'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6-linux-x86_64.egg/scipy'], 'dirs': ['lib/python3.6/site-packages/%(name)s-%(version)s-py3.6-linux-x86_64.egg/scipy'],