## # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild # # Copyright:: Copyright 2012-2013 The Cyprus Institute # Authors:: Andreas Panteli , Thekla Loizou , George Tsouloupas # License:: MIT/GPL # ## easyblock = "PythonPackage" name = 'Biopython' version = '1.61' homepage = 'http://www.biopython.org' description = """Biopython is a set of freely available tools for biological local_computation written in Python by an international team of developers. It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics. """ toolchain = {'name': 'ictce', 'version': '5.3.0'} source_urls = ['http://biopython.org/DIST'] sources = ['%(namelower)s-%(version)s.tar.gz'] local_python = 'Python' local_pyver = '2.7.3' local_pyshortver = '.'.join(local_pyver.split('.')[:2]) versionsuffix = "-%s-%s" % (local_python, local_pyver) dependencies = [ (local_python, local_pyver), ('numpy', '1.6.2', versionsuffix) ] sanity_check_paths = { 'files': [], 'dirs': [ 'lib/local_python%s/site-packages/Bio' % local_pyshortver, 'lib/local_python%s/site-packages/biopython-%s-py%s.egg-info' % (local_pyshortver, version, local_pyshortver), 'lib/local_python%s/site-packages/BioSQL' % local_pyshortver]} options = {'modulename': 'Bio'} moduleclass = 'bio'