mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nhentai: init at 0.4.16
This commit is contained in:
parent
b35ade8705
commit
2b92154878
2 changed files with 28 additions and 0 deletions
26
pkgs/applications/misc/nhentai/default.nix
Normal file
26
pkgs/applications/misc/nhentai/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue