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

36 lines
1.0 KiB
Nix
Raw Normal View History

2019-05-26 12:55:41 +01:00
{ lib, python3Packages, fetchFromGitHub, gettext }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
2020-03-21 06:11:02 +00:00
version = "1.8.3";
2019-05-26 12:55:41 +01:00
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
2020-03-21 06:11:02 +00:00
sha256 = "0993vqbsqcnxgv5l3il432i4sqzp8ns69rnsgww872vpb4bp3cg8";
2019-05-26 12:55:41 +01:00
};
2019-07-15 08:50:51 +01:00
nativeBuildInputs = [ gettext ];
2019-05-26 12:55:41 +01:00
propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ];
2019-07-15 08:50:51 +01:00
checkInputs = with python3Packages; [ nose pytest ];
# Disable tests that touch network or shell out to commands
checkPhase = ''
pytest . -k 'not get_channels \
and not play_video \
and not download_videos \
and not update_all \
and not add_channel_duplicate'
'';
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";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ marius851000 ];
};
}