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