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