From fed463d463c8e3d94da32626da1bacd19e93b95e Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 3 Jul 2024 16:09:38 -0400 Subject: [PATCH] mopidy-spotify: format with nixfmt --- pkgs/applications/audio/mopidy/spotify.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/audio/mopidy/spotify.nix b/pkgs/applications/audio/mopidy/spotify.nix index aac6ec43c305..b2734066c693 100644 --- a/pkgs/applications/audio/mopidy/spotify.nix +++ b/pkgs/applications/audio/mopidy/spotify.nix @@ -1,4 +1,10 @@ -{ lib, fetchFromGitHub, pythonPackages, mopidy, unstableGitUpdater }: +{ + lib, + fetchFromGitHub, + pythonPackages, + mopidy, + unstableGitUpdater, +}: pythonPackages.buildPythonApplication rec { pname = "mopidy-spotify"; @@ -16,15 +22,11 @@ pythonPackages.buildPythonApplication rec { pythonPackages.responses ]; - nativeBuildInputs = [ - pythonPackages.pytestCheckHook - ]; + nativeBuildInputs = [ pythonPackages.pytestCheckHook ]; pythonImportsCheck = [ "mopidy_spotify" ]; - passthru.updateScript = unstableGitUpdater { - tagPrefix = "v"; - }; + passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; meta = with lib; { homepage = "https://github.com/mopidy/mopidy-spotify";