36 lines
983 B
Nix
36 lines
983 B
Nix
{ lib, python3Packages, fetchFromGitHub, gettext }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ytcc";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "woefe";
|
|
repo = "ytcc";
|
|
rev = "v${version}";
|
|
sha256 = "11gwpqmq611j07pjscch28jsrfgyzy69ph2w1miz3arqmxz7dqjp";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ click feedparser lxml sqlalchemy youtube-dl ];
|
|
|
|
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"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|