new file: a/attrs/attrs-14.4.0-Py-3.6.eb

new file:   p/pluggy/pluggy-0.6.0-Py-3.6.eb
	new file:   p/pytest/pytest-3.3.2-Py-3.6.eb
	modified:   s/scipy/scipy-1.0.0-Py-3.6.eb
This commit is contained in:
Lukáš Krupčík 2018-01-08 13:53:38 +01:00
parent 23b2158ba8
commit 4a78fe201f
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."""
toolchain = {'name': 'Py', 'version': '3.6'}
toolchainopts = {'pic': True}
source_urls = [PYPI_SOURCE]
sources = [SOURCELOWER_TAR_GZ]
@ -19,6 +21,8 @@ dependencies = [
('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'],