mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-pyacoustid.
* gnu/packages/mp3.scm (python-pyacoustid): New variable.
This commit is contained in:
parent
8ce704b2b1
commit
2577d9341a
1 changed files with 23 additions and 0 deletions
|
@ -41,6 +41,7 @@ (define-module (gnu packages mp3)
|
|||
#:use-module (gnu packages pcre)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages xiph)
|
||||
#:use-module (gnu packages pulseaudio)
|
||||
|
@ -552,3 +553,25 @@ (define-public python-audioread
|
|||
whatever audio backend is available, such as GStreamer, Core Audio, MAD,
|
||||
FFmpeg, etc.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pyacoustid
|
||||
(package
|
||||
(name "python-pyacoustid")
|
||||
(version "1.1.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pyacoustid" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1zan6c22ca6sjy0g9ajwjp6mkzw7jv8r3n7jzska09a6x254lf87"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-audioread" ,python-audioread)
|
||||
("python-requests" ,python-requests)))
|
||||
(home-page "https://github.com/sampsyo/pyacoustid")
|
||||
(synopsis "Bindings for Chromaprint acoustic fingerprinting")
|
||||
(description
|
||||
"This package provides bindings for the Chromaprint acoustic
|
||||
fingerprinting library and the Acoustid API.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue