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
38 lines
790 B
Nix
38 lines
790 B
Nix
{
|
|
lib,
|
|
pythonPackages,
|
|
fetchPypi,
|
|
mopidy,
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "mopidy-jellyfin";
|
|
version = "1.0.6";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "mopidy_jellyfin";
|
|
hash = "sha256-IKCPypMuluR0+mMALp8lB1oB1pSw4rN4rOl/eKn+Qvo=";
|
|
};
|
|
|
|
build-system = [ pythonPackages.setuptools ];
|
|
|
|
dependencies = [
|
|
mopidy
|
|
pythonPackages.unidecode
|
|
pythonPackages.websocket-client
|
|
];
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "mopidy_jellyfin" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jellyfin/mopidy-jellyfin";
|
|
description = "Mopidy extension for playing audio files from Jellyfin";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.pstn ];
|
|
};
|
|
}
|