beets: fix lyrics dependency
This commit is contained in:
parent
4ee208ecdc
commit
2a43b93fee
@ -21,6 +21,7 @@
|
|||||||
, enableKodiupdate ? true
|
, enableKodiupdate ? true
|
||||||
, enableLastfm ? true
|
, enableLastfm ? true
|
||||||
, enableLoadext ? true
|
, enableLoadext ? true
|
||||||
|
, enableLyrics ? true
|
||||||
, enableMpd ? true
|
, enableMpd ? true
|
||||||
, enablePlaylist ? true
|
, enablePlaylist ? true
|
||||||
, enableReplaygain ? true
|
, enableReplaygain ? true
|
||||||
@ -59,6 +60,7 @@ let
|
|||||||
lastgenre = enableLastfm;
|
lastgenre = enableLastfm;
|
||||||
lastimport = enableLastfm;
|
lastimport = enableLastfm;
|
||||||
loadext = enableLoadext;
|
loadext = enableLoadext;
|
||||||
|
lyrics = enableLyrics;
|
||||||
mpdstats = enableMpd;
|
mpdstats = enableMpd;
|
||||||
mpdupdate = enableMpd;
|
mpdupdate = enableMpd;
|
||||||
playlist = enablePlaylist;
|
playlist = enablePlaylist;
|
||||||
@ -73,7 +75,7 @@ let
|
|||||||
pluginsWithoutDeps = [
|
pluginsWithoutDeps = [
|
||||||
"bench" "bpd" "bpm" "bucket" "cue" "duplicates" "edit" "embedart"
|
"bench" "bpd" "bpm" "bucket" "cue" "duplicates" "edit" "embedart"
|
||||||
"export" "filefilter" "fish" "freedesktop" "fromfilename" "ftintitle" "fuzzy"
|
"export" "filefilter" "fish" "freedesktop" "fromfilename" "ftintitle" "fuzzy"
|
||||||
"hook" "ihate" "importadded" "importfeeds" "info" "inline" "ipfs" "lyrics"
|
"hook" "ihate" "importadded" "importfeeds" "info" "inline" "ipfs"
|
||||||
"mbcollection" "mbsubmit" "mbsync" "metasync" "missing" "parentwork" "permissions" "play"
|
"mbcollection" "mbsubmit" "mbsync" "metasync" "missing" "parentwork" "permissions" "play"
|
||||||
"plexupdate" "random" "rewrite" "scrub" "smartplaylist" "spotify" "the"
|
"plexupdate" "random" "rewrite" "scrub" "smartplaylist" "spotify" "the"
|
||||||
"types" "unimported" "zero"
|
"types" "unimported" "zero"
|
||||||
@ -130,6 +132,8 @@ in pythonPackages.buildPythonApplication rec {
|
|||||||
] ++ lib.optional enableAbsubmit essentia-extractor
|
] ++ lib.optional enableAbsubmit essentia-extractor
|
||||||
++ lib.optional enableAcoustid pythonPackages.pyacoustid
|
++ lib.optional enableAcoustid pythonPackages.pyacoustid
|
||||||
++ lib.optional enableBeatport pythonPackages.requests_oauthlib
|
++ lib.optional enableBeatport pythonPackages.requests_oauthlib
|
||||||
|
++ lib.optional enableConvert ffmpeg
|
||||||
|
++ lib.optional enableDiscogs pythonPackages.discogs_client
|
||||||
++ lib.optional (enableFetchart
|
++ lib.optional (enableFetchart
|
||||||
|| enableDeezer
|
|| enableDeezer
|
||||||
|| enableEmbyupdate
|
|| enableEmbyupdate
|
||||||
@ -139,10 +143,9 @@ in pythonPackages.buildPythonApplication rec {
|
|||||||
|| enableSubsonicplaylist
|
|| enableSubsonicplaylist
|
||||||
|| enableSubsonicupdate
|
|| enableSubsonicupdate
|
||||||
|| enableAcousticbrainz) pythonPackages.requests
|
|| enableAcousticbrainz) pythonPackages.requests
|
||||||
++ lib.optional enableConvert ffmpeg
|
|
||||||
++ lib.optional enableDiscogs pythonPackages.discogs_client
|
|
||||||
++ lib.optional enableKeyfinder keyfinder-cli
|
++ lib.optional enableKeyfinder keyfinder-cli
|
||||||
++ lib.optional enableLastfm pythonPackages.pylast
|
++ lib.optional enableLastfm pythonPackages.pylast
|
||||||
|
++ lib.optional enableLyrics pythonPackages.beautifulsoup4
|
||||||
++ lib.optional enableMpd pythonPackages.mpd2
|
++ lib.optional enableMpd pythonPackages.mpd2
|
||||||
++ lib.optional enableSonosUpdate pythonPackages.soco
|
++ lib.optional enableSonosUpdate pythonPackages.soco
|
||||||
++ lib.optional enableThumbnails pythonPackages.pyxdg
|
++ lib.optional enableThumbnails pythonPackages.pyxdg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user