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

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

54 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsNoGuiHook
, gst_all_1, glib-networking, gobject-introspection
}:
pythonPackages.buildPythonApplication rec {
pname = "mopidy";
2022-12-10 02:12:00 +00:00
version = "3.4.1";
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=";
};
nativeBuildInputs = [ wrapGAppsNoGuiHook ];
2016-04-12 12:04:16 +00:00
buildInputs = with gst_all_1; [
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
];
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
);
propagatedNativeBuildInputs = [
gobject-introspection
];
# There are no tests
doCheck = false;
meta = with lib; {
2020-04-06 07:14:47 +00:00
homepage = "https://www.mopidy.com/";
description = "An extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
license = licenses.asl20;
maintainers = [ maintainers.fpletz ];
hydraPlatforms = [];
};
}