Merge pull request #143784 from r-ryantm/auto-update/ytcc

ytcc: 2.5.1 -> 2.5.2
This commit is contained in:
Mario Rodas 2021-10-30 04:09:10 -05:00 committed by GitHub
commit 823e4d6a78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,28 @@
{ lib, python3Packages, fetchFromGitHub, gettext }:
{ lib, python3Packages, fetchFromGitHub, gettext, installShellFiles }:
python3Packages.buildPythonApplication rec {
pname = "ytcc";
version = "2.5.1";
version = "2.5.2";
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
sha256 = "1w2frcy51kwsvd486awhpl5kkm11zj1nw3nnv9337316gfs213nw";
sha256 = "0xpinilb8rnha35laxq076p6v7hdis6davr9ckm5xycs3m4aj7s8";
};
nativeBuildInputs = [ gettext ];
postPatch = ''
substituteInPlace setup.py --replace "youtube_dl" "yt_dlp"
'';
nativeBuildInputs = [ gettext installShellFiles ];
propagatedBuildInputs = with python3Packages; [
click
feedparser
lxml
sqlalchemy
youtube-dl
yt-dlp
wcwidth
];
@ -38,10 +42,14 @@ python3Packages.buildPythonApplication rec {
"test_download"
];
postInstall = ''
installManPage doc/ytcc.1
'';
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.gpl3Plus;
maintainers = with lib.maintainers; [ marius851000 ];
maintainers = with lib.maintainers; [ marius851000 marsam ];
};
}