3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/ytcc/default.nix
2021-11-15 15:33:15 +00:00

56 lines
1.3 KiB
Nix

{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
version = "2.5.3";
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
sha256 = "1skhg8ca2bjjfi02pjsi3w7v3f4xhzg7bqyy0cajxsymzqzqp7lm";
};
postPatch = ''
substituteInPlace setup.py --replace "youtube_dl" "yt_dlp"
'';
nativeBuildInputs = [ gettext installShellFiles ];
propagatedBuildInputs = with python3Packages; [
click
feedparser
lxml
sqlalchemy
yt-dlp
wcwidth
];
checkInputs = with python3Packages; [ nose pytestCheckHook ];
# Disable tests that touch network or shell out to commands
disabledTests = [
"get_channels"
"play_video"
"download_videos"
"update_all"
"add_channel_duplicate"
"test_subscribe"
"test_import"
"test_import_duplicate"
"test_update"
"test_download"
];
postInstall = ''
installManPage doc/ytcc.1
'';
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";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ marius851000 marsam ];
};
}