2016-08-16 13:51:21 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
2018-12-02 03:41:15 -08:00
|
|
|
, gst_all_1, glib-networking, gobject-introspection
|
2013-02-26 10:42:04 -08:00
|
|
|
}:
|
|
|
|
|
2016-02-19 04:12:11 -08:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-06-23 06:27:58 -07:00
|
|
|
pname = "mopidy";
|
2019-07-31 23:27:25 -07:00
|
|
|
version = "2.2.3";
|
2013-02-26 10:42:04 -08:00
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mopidy";
|
|
|
|
repo = "mopidy";
|
|
|
|
rev = "v${version}";
|
2019-07-31 23:27:25 -07:00
|
|
|
sha256 = "0i9rpnlmgrnkgmr9hyx9sky9gzj2cjhay84a0yaijwcb9nmr8nnc";
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = with gst_all_1; [
|
2017-03-01 02:20:14 -08:00
|
|
|
gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad
|
2018-12-02 03:41:15 -08:00
|
|
|
glib-networking gobject-introspection
|
2016-01-07 06:43:09 -08:00
|
|
|
];
|
|
|
|
|
2013-02-26 10:42:04 -08:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2018-11-22 04:17:04 -08:00
|
|
|
gst-python pygobject3 pykka tornado_4 requests
|
2018-02-23 10:36:52 -08:00
|
|
|
] ++ stdenv.lib.optional (!stdenv.isDarwin) dbus-python;
|
2013-02-26 10:42:04 -08:00
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-01-07 06:43:09 -08:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
2013-02-26 10:42:04 -08:00
|
|
|
'';
|
|
|
|
|
2014-07-12 00:33:53 -07:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.mopidy.com/;
|
2013-02-26 10:42:04 -08:00
|
|
|
description = ''
|
2014-07-12 00:33:53 -07:00
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2014-11-11 05:20:43 -08:00
|
|
|
SoundCloud, Google Play Music, and more
|
2013-02-26 10:42:04 -08:00
|
|
|
'';
|
2014-07-12 00:33:53 -07:00
|
|
|
license = licenses.asl20;
|
2016-01-20 09:10:35 -08:00
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
2013-11-04 15:04:36 -08:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
}
|