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

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

54 lines
1.4 KiB
Nix
Raw Normal View History

2021-10-30 04:20:00 +00:00
{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
2019-05-26 11:55:41 +00:00
python3Packages.buildPythonApplication rec {
pname = "ytcc";
version = "2.6.1";
format = "pyproject";
2019-05-26 11:55:41 +00:00
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
sha256 = "sha256-pC2uoog+nev/Xa6UbXX4vX00VQQLHtZzbVkxrxO/Pg8=";
2019-05-26 11:55:41 +00:00
};
2021-10-30 04:20:00 +00:00
nativeBuildInputs = [ gettext installShellFiles ];
2019-07-15 07:50:51 +00:00
2021-02-23 23:21:13 +00:00
propagatedBuildInputs = with python3Packages; [
2021-10-30 04:20:00 +00:00
yt-dlp
click
2021-02-23 23:21:13 +00:00
wcwidth
];
2019-05-26 11:55:41 +00:00
nativeCheckInputs = with python3Packages; [ nose pytestCheckHook ];
2019-07-15 07:50:51 +00: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 11:55:41 +00:00
2021-10-30 04:20:00 +00:00
postInstall = ''
installManPage doc/ytcc.1
2022-09-01 09:20:00 +00:00
installShellCompletion --cmd ytcc \
--bash scripts/completions/bash/ytcc.completion.sh \
--fish scripts/completions/fish/ytcc.fish \
--zsh scripts/completions/zsh/_ytcc
2021-10-30 04:20:00 +00:00
'';
2019-05-26 11:55:41 +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-12 07:14:40 +00:00
license = lib.licenses.gpl3Plus;
2021-10-30 04:20:00 +00:00
maintainers = with lib.maintainers; [ marius851000 marsam ];
2019-05-26 11:55:41 +00:00
};
}