mopidy-youtube: add extraPkgs to allow adding alternative backends
This commit is contained in:
parent
b0dab7cc34
commit
2662a65c4a
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
, fetchFromGitHub
|
||||
, python3
|
||||
, mopidy
|
||||
, extraPkgs ? pkgs: []
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
|
@ -25,7 +26,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
ytmusicapi
|
||||
] ++ [
|
||||
mopidy
|
||||
];
|
||||
] ++ extraPkgs pkgs;
|
||||
|
||||
nativeCheckInputs = with python3.pkgs; [
|
||||
vcrpy
|
||||
|
|
Loading…
Reference in a new issue