gnu: Add python-pytaglib.

* gnu/packages/mp3.scm (python-pytaglib): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Martin Becze 2020-11-30 04:50:46 -06:00 committed by Leo Famulari
parent 275fcffc9b
commit 4c41dd9922
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -591,3 +591,42 @@ (define-public python-pyacoustid
"This package provides bindings for the Chromaprint acoustic
fingerprinting library and the Acoustid API.")
(license license:expat)))
(define-public python-pytaglib
(package
(name "python-pytaglib")
(version "1.4.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytaglib" version))
(sha256
(base32
"0li970qslfymz4vk1wrij2nfqw3l15cpc3fjjci48mpvg17gbnhn"))
;; Delete file generated by Cython.
(modules '((guix build utils)))
(snippet
'(begin
(delete-file "src/taglib.cpp")))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
;; Ensure that the Cython file is regenerated.
(add-after 'unpack 'setup-environment
(lambda _
(setenv "PYTAGLIB_CYTHONIZE" "1"))))))
(native-inputs
`(("python-cython" ,python-cython)
("python-pytest" ,python-pytest)))
(inputs
`(("taglib" ,taglib)))
(home-page
"https://github.com/supermihi/pytaglib")
(synopsis
"Python bindings for taglib")
(description
"This package is a Python audio tagging library. It is
cross-platform, works with all Python versions, and is very
simple to use yet fully featured.")
(license license:gpl3)))