2016-01-07 17:43:09 +03:00
|
|
|
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python, wrapGAppsHook
|
|
|
|
, glib_networking, gst_plugins_good, gst_plugins_base, gst_plugins_ugly
|
2013-02-26 22:42:04 +04:00
|
|
|
}:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "mopidy-${version}";
|
|
|
|
|
2016-01-20 20:10:35 +03:00
|
|
|
version = "1.1.2";
|
2013-02-26 22:42:04 +04:00
|
|
|
|
2013-07-19 10:30:04 +04:00
|
|
|
src = fetchurl {
|
2013-07-04 03:21:27 +04:00
|
|
|
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
|
2016-01-20 20:10:35 +03:00
|
|
|
sha256 = "1vn4knpmnp3krmn627iv1r7xa50zl816ac6b24b8ph50cq2sqjfv";
|
2013-02-26 22:42:04 +04:00
|
|
|
};
|
|
|
|
|
2016-01-07 17:43:09 +03:00
|
|
|
buildInputs = [
|
|
|
|
wrapGAppsHook gst_plugins_base gst_plugins_good gst_plugins_ugly glib_networking
|
|
|
|
];
|
|
|
|
|
2013-02-26 22:42:04 +04:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2016-01-07 17:43:09 +03:00
|
|
|
gst_python pygobject pykka tornado requests2
|
2013-02-26 22:42:04 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-01-07 17:43:09 +03:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
2013-02-26 22:42:04 +04:00
|
|
|
'';
|
|
|
|
|
2014-07-12 11:33:53 +04:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-26 22:42:04 +04:00
|
|
|
homepage = http://www.mopidy.com/;
|
|
|
|
description = ''
|
2014-07-12 11:33:53 +04:00
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2014-11-11 16:20:43 +03:00
|
|
|
SoundCloud, Google Play Music, and more
|
2013-02-26 22:42:04 +04:00
|
|
|
'';
|
2014-07-12 11:33:53 +04:00
|
|
|
license = licenses.asl20;
|
2016-01-20 20:10:35 +03:00
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
2013-11-05 03:04:36 +04:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 22:42:04 +04:00
|
|
|
};
|
|
|
|
}
|