46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
|
, gst_all_1, glib_networking, gobjectIntrospection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-${version}";
|
|
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "v${version}";
|
|
sha256 = "0krq5fbscqxayyc4vxai7iwxm2kdbgs5jicrdb013v04phw2za06";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = with gst_all_1; [
|
|
gst-plugins-base gst-plugins-good gst-plugins-ugly
|
|
glib_networking gobjectIntrospection
|
|
];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
gst-python pygobject3 pykka tornado requests2 dbus-python
|
|
];
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.mopidy.com/;
|
|
description = ''
|
|
An extensible music server that plays music from local disk, Spotify,
|
|
SoundCloud, Google Play Music, and more
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|