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

48 lines
1.1 KiB
Nix
Raw Normal View History

2019-05-26 12:55:41 +01:00
{ lib, python3Packages, fetchFromGitHub, gettext }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
2021-04-05 08:53:21 +01:00
version = "2.2.0";
2019-05-26 12:55:41 +01:00
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
2021-04-05 08:53:21 +01:00
sha256 = "1rhnrmanad10zy2as9q5wjfjlk18f51vf801syyfgxvk0pdcsk6w";
2019-05-26 12:55:41 +01:00
};
2019-07-15 08:50:51 +01:00
nativeBuildInputs = [ gettext ];
2021-02-23 23:21:13 +00:00
propagatedBuildInputs = with python3Packages; [
click
feedparser
lxml
sqlalchemy
youtube-dl
wcwidth
];
2019-05-26 12:55:41 +01:00
2021-01-12 07:14:40 +00:00
checkInputs = with python3Packages; [ nose pytestCheckHook ];
2019-07-15 08:50:51 +01:00
# Disable tests that touch network or shell out to commands
2021-01-12 07:14:40 +00:00
disabledTests = [
"get_channels"
"play_video"
"download_videos"
"update_all"
"add_channel_duplicate"
2021-02-23 23:21:13 +00:00
"test_subscribe"
"test_import"
"test_import_duplicate"
"test_update"
"test_download"
2021-01-12 07:14:40 +00:00
];
2019-05-26 12:55:41 +01: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 07:14:40 +00:00
license = lib.licenses.gpl3Plus;
2019-05-26 12:55:41 +01:00
maintainers = with lib.maintainers; [ marius851000 ];
};
}