2021-12-06 16:07:01 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "ytcc";
|
2021-12-06 16:07:01 +00:00
|
|
|
version = "2.5.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "woefe";
|
|
|
|
repo = "ytcc";
|
|
|
|
rev = "v${version}";
|
2021-12-06 16:07:01 +00:00
|
|
|
sha256 = "sha256-nYHfmksZnIZGMSSFDhW7ajvv1F5h3aJo8IXw6yYOEw0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
nativeBuildInputs = [ gettext installShellFiles ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-23 19:22:30 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2021-12-06 16:07:01 +00:00
|
|
|
yt-dlp
|
2021-03-23 19:22:30 +00:00
|
|
|
click
|
|
|
|
wcwidth
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
checkInputs = with python3Packages; [ nose pytestCheckHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Disable tests that touch network or shell out to commands
|
2021-01-15 22:18:51 +00:00
|
|
|
disabledTests = [
|
|
|
|
"get_channels"
|
|
|
|
"play_video"
|
|
|
|
"download_videos"
|
|
|
|
"update_all"
|
|
|
|
"add_channel_duplicate"
|
2021-03-23 19:22:30 +00:00
|
|
|
"test_subscribe"
|
|
|
|
"test_import"
|
|
|
|
"test_import_duplicate"
|
|
|
|
"test_update"
|
|
|
|
"test_download"
|
2021-01-15 22:18:51 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
postInstall = ''
|
|
|
|
installManPage doc/ytcc.1
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
|
|
|
description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account";
|
|
|
|
homepage = "https://github.com/woefe/ytcc";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with lib.maintainers; [ marius851000 marsam ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|