mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy";
|
|
version = "3.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "v${version}";
|
|
sha256 = "1l1rya48ykiq156spm8pfsm6li8apz66ppz7gs4s91fv7g7l5x2f";
|
|
};
|
|
|
|
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
|
|
] ++ lib.optional (!stdenv.isDarwin) dbus-python
|
|
);
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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 = [];
|
|
};
|
|
}
|