/* ** To customize the enabled beets plugins, use the pluginOverrides input to the ** derivation. ** Examples: ** ** Disabling a builtin plugin: ** python3.pkgs.beets.override { ** pluginOverrides = { ** beatport.enable = false; ** }; ** } ** ** Enabling an external plugin: ** python3.pkgs.beets.override { ** pluginOverrides = { ** alternatives = { ** enable = true; ** propagatedBuildInputs = [ beets-alternatives ]; ** }; ** }; ** } ** ** For an example adding a builtin plugin, see ** passthru.tests.with-new-builtin-plugin below */ { lib, stdenv, buildPythonPackage, fetchFromGitHub, # build-system poetry-core, poetry-dynamic-versioning, # dependencies confuse, gst-python, jellyfish, mediafile, munkres, musicbrainzngs, packaging, platformdirs, pyyaml, unidecode, reflink, requests-ratelimiter, typing-extensions, lap, # native gobject-introspection, # buildInputs gst_all_1, # plugin deps aacgain, beautifulsoup4, chromaprint, discogs-client, ffmpeg, flac, flask, flask-cors, imagemagick, keyfinder-cli, langdetect, librosa, mp3gain, mp3val, mpd2, pyacoustid, pylast, pyxdg, requests, requests-oauthlib, resampy, titlecase, soco, # configurations extraPatches ? [ ], pluginOverrides ? { }, disableAllPlugins ? false, extraDisabledTests ? [ ], extraNativeBuildInputs ? [ ], # tests pytestCheckHook, pytest-cov-stub, pytest-factoryboy, pytest-flask, mock, rarfile, responses, requests-mock, pillow, tomli, writableTmpDirAsHomeHook, # preCheck bashInteractive, diffPlugins, runtimeShell, writeScript, # passthru.tests runCommand, beets, }: buildPythonPackage (finalAttrs: { pname = "beets"; version = "2.11.0"; src = fetchFromGitHub { owner = "beetbox"; repo = "beets"; tag = "v${finalAttrs.version}"; hash = "sha256-fi6D0P2GtEO41VL6UKAArRedZVxw97yqDUAoilktUho="; }; pyproject = true; patches = extraPatches; build-system = [ poetry-core poetry-dynamic-versioning ]; dependencies = [ confuse gst-python jellyfish mediafile munkres musicbrainzngs packaging platformdirs pyyaml unidecode # Can be built without it, but is useful on btrfs systems, and doesn't # add too much to the closure. See: # https://github.com/NixOS/nixpkgs/issues/437308 reflink requests-ratelimiter typing-extensions lap ] ++ (lib.concatMap (p: p.propagatedBuildInputs) ( lib.attrValues finalAttrs.finalPackage.passthru.plugins.enabled )); nativeBuildInputs = [ gobject-introspection ] ++ extraNativeBuildInputs; buildInputs = with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-ugly ]; outputs = [ "out" ]; postInstall = '' mkdir -p $out/share/zsh/site-functions cp extra/_beet $out/share/zsh/site-functions/ ''; makeWrapperArgs = [ "--set GI_TYPELIB_PATH \"$GI_TYPELIB_PATH\"" "--set GST_PLUGIN_SYSTEM_PATH_1_0 \"$GST_PLUGIN_SYSTEM_PATH_1_0\"" "--prefix PATH : ${lib.makeBinPath finalAttrs.finalPackage.passthru.plugins.wrapperBins}" ]; nativeCheckInputs = [ ffmpeg pytestCheckHook pytest-cov-stub pytest-factoryboy pytest-flask mock rarfile responses requests-mock pillow tomli writableTmpDirAsHomeHook ] ++ finalAttrs.finalPackage.passthru.plugins.wrapperBins; __darwinAllowLocalNetworking = true; disabledTestPaths = finalAttrs.finalPackage.passthru.plugins.disabledTestPaths ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Flaky: several tests fail randomly with: # if not self._poll(timeout): # raise Empty # _queue.Empty "test/plugins/test_bpd.py" ]; disabledTests = extraDisabledTests ++ [ # touches network "test_merge_duplicate_album" # The existence of the dependency reflink (see comment above), causes this # test to be run, and it fails in the sandbox. "test_successful_reflink" ]; # Perform extra "sanity checks", before running pytest tests. preCheck = '' # Check for undefined plugins find beetsplug -mindepth 1 \ \! -path 'beetsplug/__init__.py' -a \ \( -name '*.py' -o -path 'beetsplug/*/__init__.py' \) -print \ | sed -n -re 's|^beetsplug/([^/.]+).*|\1|p' \ | sort -u > plugins_available ${diffPlugins (lib.attrNames finalAttrs.finalPackage.passthru.plugins.builtins) "plugins_available"} export BEETS_TEST_SHELL="${lib.getExe bashInteractive} --norc" env EDITOR="${writeScript "beetconfig.sh" '' #!${runtimeShell} cat > "$1" < $out/config.yaml replaygain: backend: gstreamer EOF ${finalAttrs.finalPackage}/bin/beet -c $out/config.yaml > /dev/null ''; with-new-builtin-plugin = finalAttrs.finalPackage.overrideAttrs ( newAttrs: oldAttrs: { postPatch = (oldAttrs.postPatch or "") + '' mkdir -p beetsplug/my_special_plugin touch beetsplug/my_special_plugin/__init__.py ''; passthru = lib.recursiveUpdate oldAttrs.passthru { plugins.builtins.my_special_plugin = { }; }; } ); # Test that disabling with-mpd-plugins-disabled = beets.override { pluginOverrides = { # These two plugins require mpd2 Python dependency. If they are # disabled, this dependency shouldn't be pulled, and the `runCommand` # test below should fail with a `ModuleNotFoundError` mpdstats.enable = false; mpdupdate.enable = false; }; }; mpd-plugins-really-disabled = runCommand "beets-mpd-plugins-disabled-test" { } '' set -euo pipefail export HOME=$(mktemp -d) mkdir $out cat << EOF > $out/config.yaml plugins: - mpdstats EOF ${finalAttrs.finalPackage.passthru.tests.with-mpd-plugins-disabled}/bin/beet \ -c $out/config.yaml \ --help 2> $out/help-stderr || true ${finalAttrs.finalPackage.passthru.tests.with-mpd-plugins-disabled}/bin/beet \ -c $out/config.yaml \ mpdstats --help 2> $out/mpdstats-help-stderr || true ''; }; }; meta = { description = "Music tagger and library organizer"; homepage = "https://beets.io"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ astratagem doronbehar lovesegfault pjones ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "beet"; }; })