1 { lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
3 python3Packages.buildPythonApplication rec {
8 src = fetchFromGitHub {
12 hash = "sha256-pC2uoog+nev/Xa6UbXX4vX00VQQLHtZzbVkxrxO/Pg8=";
18 ] ++ (with python3Packages; [
22 propagatedBuildInputs = with python3Packages; [
28 nativeCheckInputs = with python3Packages; [
32 # Disable tests that touch network or shell out to commands
38 "add_channel_duplicate"
41 "test_import_duplicate"
47 installManPage doc/ytcc.1
48 installShellCompletion --cmd ytcc \
49 --bash scripts/completions/bash/ytcc.completion.sh \
50 --fish scripts/completions/fish/ytcc.fish \
51 --zsh scripts/completions/zsh/_ytcc
55 description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account";
56 homepage = "https://github.com/woefe/ytcc";
57 license = lib.licenses.gpl3Plus;
58 maintainers = with lib.maintainers; [ marius851000 ];