Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pythonPackages,
|
|
wrapGAppsNoGuiHook,
|
|
gst_all_1,
|
|
glib-networking,
|
|
gobject-introspection,
|
|
pipewire,
|
|
nixosTests,
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy";
|
|
version = "3.4.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
tag = "v${version}";
|
|
hash = "sha256-2OFav2HaQq/RphmZxLyL1n3suwzt1Y/d4h33EdbStjk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsNoGuiHook ];
|
|
|
|
buildInputs =
|
|
with gst_all_1;
|
|
[
|
|
glib-networking
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gst-plugins-rs
|
|
]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pipewire ];
|
|
|
|
propagatedNativeBuildInputs = [ gobject-introspection ];
|
|
|
|
propagatedBuildInputs = [ gobject-introspection ];
|
|
|
|
build-system = [ pythonPackages.setuptools ];
|
|
|
|
dependencies =
|
|
with pythonPackages;
|
|
[
|
|
gst-python
|
|
pygobject3
|
|
pykka
|
|
requests
|
|
setuptools
|
|
tornado
|
|
]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ dbus-python ];
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) mopidy;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.mopidy.com/";
|
|
description = "Extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
|
|
mainProgram = "mopidy";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.fpletz ];
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|