mopidy: Remove dbus-python on Darwin

Darwin doesn't have dbus.
This commit is contained in:
Väinö Järvelä 2018-02-23 20:36:52 +02:00
parent e9ef15c322
commit 74d6d40bdf

View File

@ -22,8 +22,8 @@ pythonPackages.buildPythonApplication rec {
];
propagatedBuildInputs = with pythonPackages; [
gst-python pygobject3 pykka tornado requests dbus-python
];
gst-python pygobject3 pykka tornado requests
] ++ stdenv.lib.optional (!stdenv.isDarwin) dbus-python;
# There are no tests
doCheck = false;