mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01: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 ];
|
|
};
|
|
}
|