mopidy-beets: fix deps

This commit is contained in:
Gabriel Arazas 2022-02-23 16:33:31 +08:00
parent 6708cffbb6
commit 9576d0cecd

View File

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, python3, mopidy }:
{ lib, fetchFromGitHub, python3, mopidy, beets }:
python3.pkgs.buildPythonApplication rec {
pname = "mopidy-beets";
@ -14,7 +14,7 @@ python3.pkgs.buildPythonApplication rec {
propagatedBuildInputs = with python3.pkgs; [
pykka
requests
] ++ [ mopidy ];
] ++ [ mopidy beets ];
checkInputs = with python3.pkgs; [
pytest