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

36 lines
983 B
Nix
Raw Normal View History

2019-05-26 14:55:41 +03:00
{ lib, python3Packages, fetchFromGitHub, gettext }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
2021-01-12 10:14:40 +03:00
version = "2.0.1";
2019-05-26 14:55:41 +03:00
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
2020-07-24 14:53:06 +03:00
sha256 = "11gwpqmq611j07pjscch28jsrfgyzy69ph2w1miz3arqmxz7dqjp";
2019-05-26 14:55:41 +03:00
};
2019-07-15 10:50:51 +03:00
nativeBuildInputs = [ gettext ];
2021-01-12 10:14:40 +03:00
propagatedBuildInputs = with python3Packages; [ click feedparser lxml sqlalchemy youtube-dl ];
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"
];
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;
2019-05-26 14:55:41 +03:00
maintainers = with lib.maintainers; [ marius851000 ];
};
}