mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 07:34:36 +00:00
27 lines
651 B
Nix
27 lines
651 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|