summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cython/package.py
blob: 35c1bb454994466d8ec3933ad4a54257e28ea4ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PyCython(PythonPackage):
    """The Cython compiler for writing C extensions for the Python language."""

    homepage = "https://pypi.python.org/pypi/cython"
    url      = "https://pypi.io/packages/source/c/cython/Cython-0.29.7.tar.gz"

    import_modules = [
        'cython', 'Cython', 'Cython.Build', 'Cython.Compiler',
        'Cython.Runtime', 'Cython.Distutils', 'Cython.Debugger',
        'Cython.Debugger.Tests', 'Cython.Plex', 'Cython.Tests',
        'Cython.Build.Tests', 'Cython.Compiler.Tests', 'Cython.Utility',
        'Cython.Tempita', 'pyximport',
    ]

    version('0.29.7', sha256='55d081162191b7c11c7bfcb7c68e913827dfd5de6ecdbab1b99dab190586c1e8')
    version('0.29.5', sha256='9d5290d749099a8e446422adfb0aa2142c711284800fb1eb70f595101e32cbf1')
    version('0.29',   sha256='94916d1ede67682638d3cc0feb10648ff14dc51fb7a7f147f4fedce78eaaea97')
    version('0.28.6', sha256='68aa3c00ef1deccf4dd50f0201d47c268462978c12c42943bc33dc9dc816ac1b')
    version('0.28.3', sha256='1aae6d6e9858888144cea147eb5e677830f45faaff3d305d77378c3cba55f526')
    version('0.28.1', sha256='152ee5f345012ca3bb7cc71da2d3736ee20f52cd8476e4d49e5e25c5a4102b12')
    version('0.25.2', sha256='f141d1f9c27a07b5a93f7dc5339472067e2d7140d1c5a9e20112a5665ca60306')
    version('0.23.5', sha256='0ae5a5451a190e03ee36922c4189ca2c88d1df40a89b4f224bc842d388a0d1b6')
    version('0.23.4', sha256='fec42fecee35d6cc02887f1eef4e4952c97402ed2800bfe41bbd9ed1a0730d8e')
    version('0.22',   md5='1ae25add4ef7b63ee9b4af697300d6b6')
    version('0.21.2', sha256='b01af23102143515e6138a4d5e185c2cfa588e0df61c0827de4257bac3393679')

    depends_on('python@:2', type=('build', 'run'), when='@:0.22')
    depends_on('py-setuptools', type='build')
    depends_on('gdb@7.2:', type='test')

    @property
    def command(self):
        """Returns the Cython command"""
        return Executable(self.prefix.bin.cython)

    def test(self):
        # Warning: full suite of unit tests takes a very long time
        python('runtests.py', '-j', str(make_jobs))