summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-line-profiler/package.py
blob: 2399602e775d2329d1601c4788b28e5d6705429f (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
# 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)

import os

from spack import *


class PyLineProfiler(PythonPackage):
    """Line-by-line profiler."""

    homepage = "https://github.com/rkern/line_profiler"
    url      = "https://pypi.io/packages/source/l/line_profiler/line_profiler-2.0.tar.gz"

    version('2.1.2', sha256='efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c')
    version('2.0', 'fc93c6bcfac3b7cb1912cb28836d7ee6')

    depends_on('python@2.5:', type=('build', 'run'))
    depends_on('py-setuptools',     type='build')
    depends_on('py-cython',         type='build')
    depends_on('py-ipython@0.13:',  type=('build', 'run'))

    # See https://github.com/rkern/line_profiler/issues/166
    @run_before('build')
    @when('^python@3.7:')
    def fix_cython(self):
        cython = self.spec['py-cython'].command
        for root, _, files in os.walk('.'):
            for fn in files:
                if fn.endswith('.pyx'):
                    cython(os.path.join(root, fn))