ytcc: init at 1.8.1
This commit is contained in:
parent
df47f8b147
commit
8ca86c757d
25
pkgs/tools/networking/ytcc/default.nix
Normal file
25
pkgs/tools/networking/ytcc/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, python3Packages, fetchFromGitHub, gettext }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "ytcc";
|
||||||
|
version = "1.8.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "woefe";
|
||||||
|
repo = "ytcc";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "080p145j5pg8db88kb0y3x1pfc3v4aj3w68pdihlmi68dhjdr7i7";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false; # try to access /homeless-shelter
|
||||||
|
propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ gettext ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20990,6 +20990,8 @@ in
|
|||||||
|
|
||||||
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
||||||
|
|
||||||
|
ytcc = callPackage ../tools/networking/ytcc { };
|
||||||
|
|
||||||
zam-plugins = callPackage ../applications/audio/zam-plugins { };
|
zam-plugins = callPackage ../applications/audio/zam-plugins { };
|
||||||
|
|
||||||
zanshin = libsForQt5.callPackage ../applications/office/zanshin {
|
zanshin = libsForQt5.callPackage ../applications/office/zanshin {
|
||||||
|
Loading…
Reference in New Issue
Block a user