nixpkgs/pkgs/tools/networking/ytcc/default.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

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