ytcc: 2.0.1 -> 2.1.0

This commit is contained in:
joachimschmidt557 2021-02-24 00:21:13 +01:00
parent f211728d28
commit 1d3fb83d71
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -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 = {