Skip to content

Commit

Permalink
py-line-profiler: add 2.1.2, re-run cython if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e committed Oct 8, 2019
1 parent 66b9009 commit 2711379
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions var/spack/repos/builtin/packages/py-line-profiler/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

import os

from spack import *


Expand All @@ -12,9 +14,20 @@ class PyLineProfiler(PythonPackage):
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('[email protected]:')
depends_on('py-setuptools', type='build')
depends_on('py-cython', type='build')
depends_on('[email protected]:', type=('build', 'run'))

# See https://github.com/rkern/line_profiler/issues/166
@run_before('build')
@when('^[email protected]:')
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))

0 comments on commit 2711379

Please sign in to comment.