mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
commit
1316e4a745
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 ];
|
||||
};
|
||||
}
|
@ -21121,6 +21121,8 @@ in
|
||||
|
||||
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
||||
|
||||
ytcc = callPackage ../tools/networking/ytcc { };
|
||||
|
||||
zam-plugins = callPackage ../applications/audio/zam-plugins { };
|
||||
|
||||
zanshin = libsForQt5.callPackage ../applications/office/zanshin {
|
||||
|
Loading…
Reference in New Issue
Block a user