diff options
author | Felix Gruber <felgru@posteo.net> | 2022-01-02 16:56:42 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-02 22:24:32 -0500 |
commit | 883be45584e38c8636500df1548a8f356554904f (patch) | |
tree | 424a794c84e870729270772c34548a529162567f | |
parent | 01ec5efff7cf95cae69493bd4ccfdd21a38770ae (diff) | |
download | guix-883be45584e38c8636500df1548a8f356554904f.tar.gz guix-883be45584e38c8636500df1548a8f356554904f.zip |
gnu: beets-bandcamp: Fix build.
This fixes a build failure in the 'sanity-check' phase.
* gnu/packages/music.scm (beets-bandcamp)[propagated-inputs]: Add
python-confuse, python-jellyfish, python-mediafile, python-munkres,
python-musicbrainzngs and python-unidecode.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/music.scm | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index a9c341ad5f..c37821b49d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -40,7 +40,7 @@ ;;; Copyright © 2021 Frank Pursel <frank.pursel@gmail.com> ;;; Copyright © 2021 Rovanion Luckey <rovanion.luckey@gmail.com> ;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li> -;;; Copyright © 2021 Felix Gruber <felgru@posteo.net> +;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net> ;;; Copyright © 2021 Simon Streit <simon@netpanic.org> ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> ;;; Copyright © 2021 Thomas Albers Raviola <thomas@thomaslabs.org> @@ -3875,8 +3875,17 @@ your music.") (build-system python-build-system) (arguments '(#:tests? #f)) ; there are no tests (propagated-inputs - (list beets python-isodate python-beautifulsoup4 python-requests - python-six)) + (list beets + python-beautifulsoup4 + python-confuse + python-isodate + python-jellyfish + python-mediafile + python-munkres + python-musicbrainzngs + python-requests + python-six + python-unidecode)) (home-page "https://github.com/unrblt/beets-bandcamp") (synopsis "Bandcamp plugin for beets") (description |