mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
7565d00a7c
Mopidy-Local is the successor to Mopidy-Local-SQLite and Mopidy-Local-Images, which are already packaged. I had to make gobject-introspection a propagated build input, otherwise Mopidy-Local can't import Mopidy.
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
|
, gst_all_1, glib-networking, gobject-introspection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "v${version}";
|
|
sha256 = "1n9lpgq0p112cjgsrc1cd6mnffk56y36g2c5skk9cqzw27qrkd15";
|
|
};
|
|
|
|
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
|
|
] ++ stdenv.lib.optional (!stdenv.isDarwin) dbus-python
|
|
);
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.mopidy.com/";
|
|
description = ''
|
|
An extensible music server that plays music from local disk, Spotify,
|
|
SoundCloud, Google Play Music, and more
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.fpletz ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|