2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
2020-04-24 23:36:52 +00:00
|
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
|
|
}:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
|
|
pname = "mopidy";
|
2021-01-09 10:05:03 +00:00
|
|
|
version = "3.1.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mopidy";
|
|
|
|
repo = "mopidy";
|
|
|
|
rev = "v${version}";
|
2021-01-09 10:05:03 +00:00
|
|
|
sha256 = "14m80z9spi2vhfs2bbff7ky80mr6bksl4550y17hwd7zpkid60za";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = with gst_all_1; [
|
2020-10-19 00:13:06 +00:00
|
|
|
glib-networking
|
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-ugly
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2020-10-19 00:13:06 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
gst-python
|
|
|
|
pygobject3
|
|
|
|
pykka
|
|
|
|
requests
|
|
|
|
setuptools
|
|
|
|
tornado
|
2021-01-17 00:15:33 +00:00
|
|
|
] ++ lib.optional (!stdenv.isDarwin) dbus-python
|
2020-10-19 00:13:06 +00:00
|
|
|
);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.mopidy.com/";
|
|
|
|
description = ''
|
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2021-03-09 03:18:52 +00:00
|
|
|
SoundCloud, and more
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.fpletz ];
|
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|