58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, mopidy
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "mopidy-youtube";
|
|
version = "3.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "natumbri";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-hlokysFFgZZYY7flghgRq6wVG824kpcLkXxk6nMhxn4=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
beautifulsoup4
|
|
cachetools
|
|
pykka
|
|
requests
|
|
youtube-dl
|
|
ytmusicapi
|
|
] ++ [
|
|
mopidy
|
|
];
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
vcrpy
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test requires a YouTube API key
|
|
"test_get_default_config"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Disable tests which interact with Youtube
|
|
"tests/test_api.py"
|
|
"tests/test_backend.py"
|
|
"tests/test_youtube.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mopidy_youtube"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Mopidy extension for playing music from YouTube";
|
|
homepage = "https://github.com/natumbri/mopidy-youtube";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ spwhitt ];
|
|
};
|
|
}
|