diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index ee2b4f8a842b..a70360d0d324 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -118,7 +118,8 @@ python3.pkgs.buildPythonApplication { ++ lib.optionals withMusicBrainzNgs [ musicbrainzngs ] ++ lib.optionals withPahoMqtt [ paho-mqtt ] ++ lib.optionals withPypresence [ pypresence ] - ++ lib.optionals withSoco [ soco ]; + ++ lib.optionals withSoco [ soco ] + ++ lib.optionals (pythonAtLeast "3.13") [ standard-telnetlib ]; nativeCheckInputs = [ @@ -170,7 +171,7 @@ python3.pkgs.buildPythonApplication { gappsWrapperArgs+=(--prefix PATH : ${kakasi}/bin) ''; - meta = with lib; { + meta = { description = "GTK-based audio player written in Python, using the Mutagen tagging library"; longDescription = '' Quod Libet is a GTK-based audio player written in Python, using @@ -186,8 +187,8 @@ python3.pkgs.buildPythonApplication { & internet radio, and all major audio formats. ''; homepage = "https://quodlibet.readthedocs.io/en/latest"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ coroa pbogdan ];