summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-soundfile/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-soundfile/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-soundfile/package.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-soundfile/package.py b/var/spack/repos/builtin/packages/py-soundfile/package.py
index 9e8baeb636..45ea317f10 100644
--- a/var/spack/repos/builtin/packages/py-soundfile/package.py
+++ b/var/spack/repos/builtin/packages/py-soundfile/package.py
@@ -12,12 +12,13 @@ class PySoundfile(PythonPackage):
homepage = "https://github.com/bastibe/PySoundFile"
pypi = "SoundFile/SoundFile-0.10.3.post1.tar.gz"
- version('0.10.3.post1', sha256='490cff42650733d1832728b937fe99fa1802896f5ef4d61bcf78cf7ebecb107b')
+ version(
+ "0.10.3.post1", sha256="490cff42650733d1832728b937fe99fa1802896f5ef4d61bcf78cf7ebecb107b"
+ )
- variant('numpy', default=True,
- description='Support for processing audio data as numpy arrays')
+ variant("numpy", default=True, description="Support for processing audio data as numpy arrays")
- depends_on('py-setuptools', type='build')
- depends_on('py-cffi@1.0:', type=('build', 'run'))
- depends_on('py-numpy', type=('build', 'run'), when='+numpy')
- depends_on('libsndfile', type='run')
+ depends_on("py-setuptools", type="build")
+ depends_on("py-cffi@1.0:", type=("build", "run"))
+ depends_on("py-numpy", type=("build", "run"), when="+numpy")
+ depends_on("libsndfile", type="run")