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";
|
2022-12-02 08:20:57 +00:00
|
|
|
version = "3.4.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mopidy";
|
|
|
|
repo = "mopidy";
|
2022-04-27 09:35:20 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2022-12-02 08:20:57 +00:00
|
|
|
sha256 = "sha256-cr4v1ScrXLRjqlsCXTm0KvLc+jJbFX1HVKJLrDAtIw8=";
|
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
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
propagatedNativeBuildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
];
|
|
|
|
|
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 = [];
|
|
|
|
};
|
|
|
|
}
|