mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
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:
parent
275fcffc9b
commit
4c41dd9922
1 changed files with 39 additions and 0 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue