nixpkgs/pkgs/applications/audio/mopidy/youtube.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-10 09:46:31 +00:00
{ lib
, fetchFromGitHub
, python3
, mopidy
}:
2015-12-15 02:19:58 +00:00
2021-10-10 09:46:31 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "mopidy-youtube";
version = "3.5";
2022-03-24 19:55:32 +00:00
format = "setuptools";
2015-12-15 02:19:58 +00:00
2021-10-10 09:46:31 +00:00
src = fetchFromGitHub {
owner = "natumbri";
repo = pname;
rev = "v${version}";
2022-03-24 19:55:32 +00:00
hash = "sha256-hlokysFFgZZYY7flghgRq6wVG824kpcLkXxk6nMhxn4=";
2021-10-10 09:46:31 +00:00
};
2020-01-24 09:27:35 +00:00
2021-10-10 09:46:31 +00:00
propagatedBuildInputs = with python3.pkgs; [
2021-10-03 14:16:12 +00:00
beautifulsoup4
cachetools
2021-10-10 09:46:31 +00:00
pykka
requests
2021-10-03 14:16:12 +00:00
youtube-dl
ytmusicapi
2021-10-10 09:46:31 +00:00
] ++ [
mopidy
];
2022-03-24 19:55:32 +00:00
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"
];
2015-12-15 02:19:58 +00:00
2021-10-10 09:46:31 +00:00
pythonImportsCheck = [
"mopidy_youtube"
];
2015-12-15 02:19:58 +00:00
meta = with lib; {
2015-12-15 02:19:58 +00:00
description = "Mopidy extension for playing music from YouTube";
2021-10-10 09:46:31 +00:00
homepage = "https://github.com/natumbri/mopidy-youtube";
2015-12-15 02:19:58 +00:00
license = licenses.asl20;
2021-10-10 09:46:31 +00:00
maintainers = with maintainers; [ spwhitt ];
2015-12-15 02:19:58 +00:00
};
}