mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
4d20dc5e87
Fixes: ERROR: Wrong expression passed to '-k': not get_channels \ and not play_video \ and not download_videos \ and not update_all \ and not add_channel_duplicate: at column 18: unexpected character "\"
36 lines
1 KiB
Nix
36 lines
1 KiB
Nix
{ lib, python3Packages, fetchFromGitHub, gettext }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ytcc";
|
|
version = "1.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "woefe";
|
|
repo = "ytcc";
|
|
rev = "v${version}";
|
|
sha256 = "11gwpqmq611j07pjscch28jsrfgyzy69ph2w1miz3arqmxz7dqjp";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ];
|
|
|
|
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"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|