2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-02-28 12:28:16 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyLibrosa(PythonPackage):
|
|
|
|
"""A python package for music and audio analysis."""
|
|
|
|
|
|
|
|
homepage = "http://github.com/librosa/librosa"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "librosa/librosa-0.7.2.tar.gz"
|
2020-02-28 12:28:16 +08:00
|
|
|
|
|
|
|
version('0.7.2', sha256='656bbda80e98e6330db1ead79cd084b13a762284834d7603fcf7cf7c0dc65f3c')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-audioread@2.0.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-numpy@1.15.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-scipy@1.0.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-scikit-learn@0.14.0:0.18.999,0.19.1:', type=('build', 'run'))
|
|
|
|
depends_on('py-joblib@0.12:', type=('build', 'run'))
|
|
|
|
depends_on('py-decorator@3.0.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-six@1.3:', type=('build', 'run'))
|
|
|
|
depends_on('py-resampy@0.2.2:', type=('build', 'run'))
|
|
|
|
depends_on('py-numba@0.43.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-soundfile@0.9.0:', type=('build', 'run'))
|