Commit f9bdd4fe authored by Doron Behar's avatar Doron Behar
Browse files

beets-audible: use beets-minimal

Previously, the attribute set:

python3.pkgs.beets-minimal.passthru.plugins.enabled

filtered out the disabled plugins from:

python3.pkgs.beets.passthru.plugins.all

, and not from:

python3.pkgs.beets-minimal.passthru.plugins.all

. This meant that before the commit titled:

python3.pkgs.beets: use fixed-point arguments

, the derivations `beets` and `beets-minimal` were the same. Now this
change has significance, were as in out of context PR #477088 it didn't.
parent 6e5237a8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  hatchling,

  # native
  beets,
  beets-minimal,

  # dependencies
  markdownify,
@@ -35,7 +35,7 @@ buildPythonPackage rec {
  ];

  nativeBuildInputs = [
    beets
    beets-minimal
  ];

  pythonRelaxDeps = true;