2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
2018-12-02 03:41:15 -08:00
|
|
|
, gst_all_1, glib-networking, gobject-introspection
|
2013-02-26 10:42:04 -08:00
|
|
|
}:
|
|
|
|
|
2020-03-15 05:48:08 -07:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-06-23 06:27:58 -07:00
|
|
|
pname = "mopidy";
|
2021-01-06 14:41:04 -08:00
|
|
|
version = "3.1.1";
|
2013-02-26 10:42:04 -08:00
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mopidy";
|
|
|
|
repo = "mopidy";
|
|
|
|
rev = "v${version}";
|
2021-01-06 14:41:04 -08:00
|
|
|
sha256 = "14m80z9spi2vhfs2bbff7ky80mr6bksl4550y17hwd7zpkid60za";
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = with gst_all_1; [
|
2020-07-18 02:27:37 -07:00
|
|
|
glib-networking
|
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-ugly
|
2016-01-07 06:43:09 -08:00
|
|
|
];
|
|
|
|
|
2020-07-18 02:27:37 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
gst-python
|
|
|
|
pygobject3
|
|
|
|
pykka
|
|
|
|
requests
|
|
|
|
setuptools
|
|
|
|
tornado
|
2021-01-15 05:21:58 -08:00
|
|
|
] ++ lib.optional (!stdenv.isDarwin) dbus-python
|
2020-07-18 02:27:37 -07:00
|
|
|
);
|
2013-02-26 10:42:04 -08:00
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-04-06 00:14:47 -07:00
|
|
|
homepage = "https://www.mopidy.com/";
|
2013-02-26 10:42:04 -08:00
|
|
|
description = ''
|
2014-07-12 00:33:53 -07:00
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2021-03-05 23:51:31 -08:00
|
|
|
SoundCloud, and more
|
2013-02-26 10:42:04 -08:00
|
|
|
'';
|
2014-07-12 00:33:53 -07:00
|
|
|
license = licenses.asl20;
|
2019-08-20 06:24:01 -07:00
|
|
|
maintainers = [ maintainers.fpletz ];
|
2013-11-04 15:04:36 -08:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
}
|