From 472435bf371f9598e64698e0b7fd49f2ff40e682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Fri, 28 Apr 2017 14:42:18 +0200 Subject: [PATCH] new file: s/ScientificPython/ScientificPython-2.9.4-foss-2015g-Python-2.7.9.eb --- ...ficPython-2.9.4-foss-2015g-Python-2.7.9.eb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 s/ScientificPython/ScientificPython-2.9.4-foss-2015g-Python-2.7.9.eb diff --git a/s/ScientificPython/ScientificPython-2.9.4-foss-2015g-Python-2.7.9.eb b/s/ScientificPython/ScientificPython-2.9.4-foss-2015g-Python-2.7.9.eb new file mode 100644 index 00000000..6a19c467 --- /dev/null +++ b/s/ScientificPython/ScientificPython-2.9.4-foss-2015g-Python-2.7.9.eb @@ -0,0 +1,31 @@ +easyblock = 'PythonPackage' + +name = 'ScientificPython' +version = '2.9.4' +versionsuffix = '-Python-%(pyver)s' + +homepage = 'https://sourcesup.cru.fr/projects/scientific-py/' +description = """ScientificPython is a collection of Python modules for scientific computing. + It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization, + and parallelization.""" + +toolchain = {'name': 'foss', 'version': '2015g'} + +source_urls = ['https://sourcesup.cru.fr/frs/download.php/file/4570'] +sources = [SOURCE_TAR_GZ] + +dependencies = [ + ('Python', '2.7.9'), + # 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.12.1', versionsuffix), +] + +options = {'modulename': 'Scientific'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages/Scientific'], +} + +moduleclass = 'math'