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