Merge pull request #114185 from joachimschmidt557/update-ytcc
ytcc: 2.0.1 -> 2.1.0
This commit is contained in:
commit
7363c4c4c4
1 changed files with 15 additions and 3 deletions
|
@ -2,18 +2,25 @@
|
|||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "ytcc";
|
||||
version = "2.0.1";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "woefe";
|
||||
repo = "ytcc";
|
||||
rev = "v${version}";
|
||||
sha256 = "11gwpqmq611j07pjscch28jsrfgyzy69ph2w1miz3arqmxz7dqjp";
|
||||
sha256 = "04l5bfyq53r8803q24bfw49ji7jx8z9irhhh30cvq2va1ywwd4ww";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gettext ];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ click feedparser lxml sqlalchemy youtube-dl ];
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
click
|
||||
feedparser
|
||||
lxml
|
||||
sqlalchemy
|
||||
youtube-dl
|
||||
wcwidth
|
||||
];
|
||||
|
||||
checkInputs = with python3Packages; [ nose pytestCheckHook ];
|
||||
|
||||
|
@ -24,6 +31,11 @@ python3Packages.buildPythonApplication rec {
|
|||
"download_videos"
|
||||
"update_all"
|
||||
"add_channel_duplicate"
|
||||
"test_subscribe"
|
||||
"test_import"
|
||||
"test_import_duplicate"
|
||||
"test_update"
|
||||
"test_download"
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue