spack/var/spack/repos/builtin/packages/py-resampy/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
772 B
Python

# Copyright 2013-2023 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.package 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"))