py-mutagen: add new package (#24979)

This commit is contained in:
Manuela Kuhn 2021-07-21 03:33:13 +02:00 committed by GitHub
parent 30e559592a
commit 93b694f973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
# Copyright 2013-2021 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 PyMutagen(PythonPackage):
"""Read and write audio tags for many formats."""
homepage = "https://github.com/quodlibet/mutagen"
pypi = "mutagen/mutagen-1.45.1.tar.gz"
version('1.45.1', sha256='6397602efb3c2d7baebd2166ed85731ae1c1d475abca22090b7141ff5034b3e1')
depends_on('python@3.5:3.99', type=('build', 'run'))
depends_on('py-setuptools', type='build')