2013-07-19 08:30:04 +02:00
|
|
|
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python
|
2013-02-26 19:42:04 +01:00
|
|
|
, gst_plugins_good, gst_plugins_base
|
|
|
|
}:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "mopidy-${version}";
|
|
|
|
|
2015-06-01 02:04:31 +02:00
|
|
|
version = "1.0.5";
|
2013-02-26 19:42:04 +01:00
|
|
|
|
2013-07-19 08:30:04 +02:00
|
|
|
src = fetchurl {
|
2013-07-04 01:21:27 +02:00
|
|
|
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
|
2015-06-01 02:04:31 +02:00
|
|
|
sha256 = "0lhmm2w2djf6mb3acw1yq1k4j74v1lf4kgx24dsdnpkgsycrv5q6";
|
2013-02-26 19:42:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2014-07-28 19:49:10 +02:00
|
|
|
gst_python pygobject pykka tornado gst_plugins_base gst_plugins_good
|
2013-02-26 19:42:04 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-07-12 09:33:53 +02:00
|
|
|
wrapProgram $out/bin/mopidy \
|
|
|
|
--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; {
|
2013-02-26 19:42:04 +01:00
|
|
|
homepage = http://www.mopidy.com/;
|
|
|
|
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;
|
|
|
|
maintainers = [ maintainers.rickynils ];
|
2013-11-05 00:04:36 +01:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 19:42:04 +01:00
|
|
|
};
|
|
|
|
}
|