summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-resampy/package.py
blob: cd444c835019f6ac02d54f90592b5127a0ec3ec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2020 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 PyResampy(PythonPackage):
    """Efficient sample rate conversion in python"""

    homepage = "https://github.com/bmcfee/resampy"
    pypi = "resampy/resampy-0.2.2.tar.gz"

    version('0.2.2', sha256='62af020d8a6674d8117f62320ce9470437bb1d738a5d06cd55591b69b463929e')

    depends_on('py-setuptools', type='build')
    depends_on('py-numpy@1.10:', type=('build', 'run'))
    depends_on('py-scipy@0.13:', type=('build', 'run'))
    depends_on('py-numba@0.32:', type=('build', 'run'))
    depends_on('py-six@1.3:', type=('build', 'run'))