nhentai: init at 0.4.16

This commit is contained in:
Travis Davis 2021-08-28 13:33:28 -05:00
parent b35ade8705
commit 2b92154878
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "nhentai";
version = "0.4.16";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-2lzrQqUx3lPM+OAUO/SwT+fAuG7kWmUnTACNUiP7d1M=";
};
propagatedBuildInputs = with python3Packages; [
requests
iso8601
beautifulsoup4
soupsieve
tabulate
future
];
meta = with lib; {
homepage = "https://github.com/RicterZ/nhentai";
description = "nHentai is a CLI tool for downloading doujinshi from <http://nhentai.net>";
license = licenses.mit;
maintainers = with maintainers; [ travisdavis-ops ];
};
}

View file

@ -31866,6 +31866,8 @@ with pkgs;
nut = callPackage ../applications/misc/nut { };
nhentai = callPackage ../applications/misc/nhentai { };
nvd = callPackage ../tools/package-management/nvd { };
solfege = python3Packages.callPackage ../misc/solfege { };