beets: fix broken aarch64 build due to missing plugin test

The `absubmit` plugin for beets has no respective plugin test that
is named after the default plugin test schema defined in `common.nix` [1],
so not explicitly declaring that the plugin has *no tests* (i.e. the
respective test list is empty), `mkPlugin` will try to disable the
non-existant test `test/test_absubmit.py`), breaking beet's build.

[1]: c7916a507b/pkgs/tools/audio/beets/common.nix (L39)
This commit is contained in:
Manuel Frischknecht 2023-12-27 03:05:19 +00:00
parent f930306a69
commit 6fcd9c7e93

View File

@ -14,6 +14,7 @@
absubmit = {
enable = lib.elem stdenv.hostPlatform.system essentia-extractor.meta.platforms;
wrapperBins = [ essentia-extractor ];
testPaths = [ ];
};
acousticbrainz.propagatedBuildInputs = [ python3Packages.requests ];
albumtypes = { };