mopidy-spotify: format with nixfmt

This commit is contained in:
seth
2024-07-03 16:09:38 -04:00
parent 7cdac9fd12
commit fed463d463
+9 -7
View File
@@ -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";