2023-05-24 13:37:59 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsNoGuiHook
|
2020-04-24 23:36:52 +00:00
|
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
|
|
}:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
|
|
pname = "mopidy";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "3.4.2";
|
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}";
|
2024-01-25 14:12:00 +00:00
|
|
|
sha256 = "sha256-2OFav2HaQq/RphmZxLyL1n3suwzt1Y/d4h33EdbStjk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
nativeBuildInputs = [ wrapGAppsNoGuiHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
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
|
2023-05-24 13:37:59 +00:00
|
|
|
gst-plugins-rs
|
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/";
|
2023-05-24 13:37:59 +00:00
|
|
|
description = "An extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "mopidy";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.fpletz ];
|
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|