mopidy: fmt

This commit is contained in:
Felix Buehler 2024-11-14 23:45:15 +01:00
parent dddc9d800a
commit 73ede0a42d

View File

@ -35,9 +35,7 @@ pythonPackages.buildPythonApplication rec {
];
propagatedBuildInputs =
[
gobject-introspection
]
[ gobject-introspection ]
++ (
with pythonPackages;
[
@ -51,14 +49,14 @@ pythonPackages.buildPythonApplication rec {
++ lib.optional (!stdenv.hostPlatform.isDarwin) dbus-python
);
propagatedNativeBuildInputs = [
gobject-introspection
];
propagatedNativeBuildInputs = [ gobject-introspection ];
# There are no tests
doCheck = false;
passthru.tests = { inherit (nixosTests) mopidy; };
passthru.tests = {
inherit (nixosTests) mopidy;
};
meta = with lib; {
homepage = "https://www.mopidy.com/";