2021-10-30 05:20:00 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
|
2019-05-26 12:55:41 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "ytcc";
|
2021-10-30 01:41:38 +01:00
|
|
|
version = "2.5.2";
|
2019-05-26 12:55:41 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "woefe";
|
|
|
|
repo = "ytcc";
|
|
|
|
rev = "v${version}";
|
2021-10-30 01:41:38 +01:00
|
|
|
sha256 = "0xpinilb8rnha35laxq076p6v7hdis6davr9ckm5xycs3m4aj7s8";
|
2019-05-26 12:55:41 +01:00
|
|
|
};
|
|
|
|
|
2021-10-30 05:20:00 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "youtube_dl" "yt_dlp"
|
|
|
|
'';
|
|
|
|
|
2021-10-30 05:20:00 +01:00
|
|
|
nativeBuildInputs = [ gettext installShellFiles ];
|
2019-07-15 08:50:51 +01:00
|
|
|
|
2021-02-23 23:21:13 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
click
|
|
|
|
feedparser
|
|
|
|
lxml
|
|
|
|
sqlalchemy
|
2021-10-30 05:20:00 +01:00
|
|
|
yt-dlp
|
2021-02-23 23:21:13 +00:00
|
|
|
wcwidth
|
|
|
|
];
|
2019-05-26 12:55:41 +01:00
|
|
|
|
2021-01-12 07:14:40 +00:00
|
|
|
checkInputs = with python3Packages; [ nose pytestCheckHook ];
|
2019-07-15 08:50:51 +01:00
|
|
|
|
|
|
|
# Disable tests that touch network or shell out to commands
|
2021-01-12 07:14:40 +00:00
|
|
|
disabledTests = [
|
|
|
|
"get_channels"
|
|
|
|
"play_video"
|
|
|
|
"download_videos"
|
|
|
|
"update_all"
|
|
|
|
"add_channel_duplicate"
|
2021-02-23 23:21:13 +00:00
|
|
|
"test_subscribe"
|
|
|
|
"test_import"
|
|
|
|
"test_import_duplicate"
|
|
|
|
"test_update"
|
|
|
|
"test_download"
|
2021-01-12 07:14:40 +00:00
|
|
|
];
|
2019-05-26 12:55:41 +01:00
|
|
|
|
2021-10-30 05:20:00 +01:00
|
|
|
postInstall = ''
|
|
|
|
installManPage doc/ytcc.1
|
|
|
|
'';
|
|
|
|
|
2019-05-26 12:55:41 +01: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-12 07:14:40 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2019-05-26 12:55:41 +01:00
|
|
|
maintainers = with lib.maintainers; [ marius851000 ];
|
|
|
|
};
|
|
|
|
}
|