mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
26 lines
711 B
Nix
26 lines
711 B
Nix
{ lib, python3Packages, fetchPypi, mopidy }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mopidy-jellyfin";
|
|
version = "1.0.5";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Mopidy-Jellyfin";
|
|
hash = "sha256-cZliraTxTAJ2dXaxttWI3x4wCkmEhEo33GTNtAYwgTc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mopidy python3Packages.unidecode python3Packages.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 ];
|
|
};
|
|
}
|