Skip to content

Commit

Permalink
beets: 2.0.0 -> 2.2.0 (#358086)
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar authored Dec 7, 2024
2 parents 5af5ea0 + 395b04b commit 65484f8
Show file tree
Hide file tree
Showing 6 changed files with 261 additions and 214 deletions.
111 changes: 71 additions & 40 deletions pkgs/tools/audio/beets/builtin-plugins.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,47 @@
{ aacgain
, ffmpeg
, flac
, imagemagick
, keyfinder-cli
, mp3gain
, mp3val
, python3Packages
, ...
}: {
{
aacgain,
ffmpeg,
flac,
imagemagick,
keyfinder-cli,
mp3gain,
mp3val,
python3Packages,
...
}:
{
absubmit = {
deprecated = true;
testPaths = [ ];
};

acousticbrainz.propagatedBuildInputs = [ python3Packages.requests ];
advancedrewrite = {
testPaths = [ ];
};
acousticbrainz = {
deprecated = true;
propagatedBuildInputs = [ python3Packages.requests ];
};
albumtypes = { };
aura = {
propagatedBuildInputs = with python3Packages; [ flask pillow ];
testPaths = [ ];
propagatedBuildInputs = with python3Packages; [
flask
flask-cors
pillow
];
};
autobpm = {
propagatedBuildInputs = with python3Packages; [
librosa
# An optional dependency of librosa, needed for beets' autobpm
resampy
];
};
badfiles = {
testPaths = [ ];
wrapperBins = [ mp3val flac ];
wrapperBins = [
mp3val
flac
];
};
bareasc = { };
beatport.propagatedBuildInputs = [ python3Packages.requests-oauthlib ];
Expand All @@ -39,7 +59,10 @@
propagatedBuildInputs = [ python3Packages.requests ];
testPaths = [ ];
};
discogs.propagatedBuildInputs = with python3Packages; [ discogs-client requests ];
discogs.propagatedBuildInputs = with python3Packages; [
discogs-client
requests
];
duplicates.testPaths = [ ];
edit = { };
embedart = {
Expand All @@ -49,7 +72,12 @@
embyupdate.propagatedBuildInputs = [ python3Packages.requests ];
export = { };
fetchart = {
propagatedBuildInputs = with python3Packages; [ requests pillow ];
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
langdetect
pillow
requests
];
wrapperBins = [ imagemagick ];
};
filefilter = { };
Expand All @@ -76,11 +104,19 @@
propagatedBuildInputs = [ python3Packages.pylast ];
testPaths = [ ];
};
limit = { };
listenbrainz = {
testPaths = [ ];
};
loadext = {
propagatedBuildInputs = [ python3Packages.requests ];
testPaths = [ ];
};
lyrics.propagatedBuildInputs = [ python3Packages.beautifulsoup4 ];
lyrics.propagatedBuildInputs = with python3Packages; [
beautifulsoup4
langdetect
requests
];
mbcollection.testPaths = [ ];
mbsubmit = { };
mbsync = { };
Expand All @@ -97,8 +133,12 @@
playlist.propagatedBuildInputs = [ python3Packages.requests ];
plexupdate = { };
random = { };
replaygain.wrapperBins = [ aacgain ffmpeg mp3gain ];
rewrite.testPaths= [ ];
replaygain.wrapperBins = [
aacgain
ffmpeg
mp3gain
];
rewrite.testPaths = [ ];
scrub.testPaths = [ ];
smartplaylist = { };
sonosupdate = {
Expand All @@ -111,31 +151,22 @@
testPaths = [ ];
};
subsonicupdate.propagatedBuildInputs = [ python3Packages.requests ];
substitute = {
testPaths = [ ];
};
the = { };
thumbnails = {
propagatedBuildInputs = with python3Packages; [ pillow pyxdg ];
propagatedBuildInputs = with python3Packages; [
pillow
pyxdg
];
wrapperBins = [ imagemagick ];
};
types.testPaths = [ "test/plugins/test_types_plugin.py" ];
unimported.testPaths = [ ];
web.propagatedBuildInputs = [ python3Packages.flask ];
web.propagatedBuildInputs = with python3Packages; [
flask
flask-cors
];
zero = { };
limit = { };
substitute = {
testPaths = [ ];
};
advancedrewrite = {
testPaths = [ ];
};
autobpm = {
propagatedBuildInputs = with python3Packages; [
librosa
# An optional dependency of librosa, needed for beets' autobpm
resampy
];
testPaths = [ ];
};
listenbrainz = {
testPaths = [ ];
};
}
Loading

0 comments on commit 65484f8

Please sign in to comment.