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

48 lines
1.1 KiB
Nix
Raw Normal View History

2019-05-26 14:55:41 +03:00
{ lib, python3Packages, fetchFromGitHub, gettext }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
2021-08-23 11:30:44 +03:00
version = "2.3.0";
2019-05-26 14:55:41 +03:00
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
2021-08-23 11:30:44 +03:00
sha256 = "1q0w3b7r93416s28qra608n0d7cjh95nwkzgg23z5hp5sq3w3izr";
2019-05-26 14:55:41 +03:00
};
2019-07-15 10:50:51 +03:00
nativeBuildInputs = [ gettext ];
2021-02-24 02:21:13 +03:00
propagatedBuildInputs = with python3Packages; [
click
feedparser
lxml
sqlalchemy
youtube-dl
wcwidth
];
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"
2021-02-24 02:21:13 +03:00
"test_subscribe"
"test_import"
"test_import_duplicate"
"test_update"
"test_download"
2021-01-12 10:14:40 +03:00
];
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 ];
};
}