nixpkgs/pkgs/applications/audio/mopidy/mopidy.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
, gst_all_1, glib-networking, gobject-introspection
}:
pythonPackages.buildPythonApplication rec {
pname = "mopidy";
2022-04-29 10:08:12 +02:00
version = "3.3.0";
2016-04-12 14:04:16 +02:00
src = fetchFromGitHub {
owner = "mopidy";
repo = "mopidy";
2022-04-29 10:08:12 +02:00
rev = "refs/tags/v${version}";
sha256 = "sha256-F0fIl9DrludZZdzsrl/xsp7TLMgTPbVGtGvMHyD52Yw=";
};
2016-04-12 14:04:16 +02:00
nativeBuildInputs = [ wrapGAppsHook ];
buildInputs = with gst_all_1; [
glib-networking
gst-plugins-bad
gst-plugins-base
gst-plugins-good
gst-plugins-ugly
];
propagatedBuildInputs = [
gobject-introspection
] ++ (with pythonPackages; [
gst-python
pygobject3
pykka
requests
setuptools
tornado
2021-01-15 14:21:58 +01:00
] ++ lib.optional (!stdenv.isDarwin) dbus-python
);
# There are no tests
doCheck = false;
meta = with lib; {
2020-04-06 09:14:47 +02:00
homepage = "https://www.mopidy.com/";
description = ''
An extensible music server that plays music from local disk, Spotify,
2021-03-06 08:51:31 +01:00
SoundCloud, and more
'';
license = licenses.asl20;
maintainers = [ maintainers.fpletz ];
hydraPlatforms = [];
};
}