evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / nh / nhentai / package.nix
blobf6afd8d608829e6a87df7f124b5b173ff78890e7
1 { lib
2 , python3Packages
3 , fetchFromGitHub
4 }:
6 python3Packages.buildPythonApplication rec {
7   pname = "nhentai";
8   version = "0.5.3";
10   src = fetchFromGitHub {
11     owner = "RicterZ";
12     repo = pname;
13     rev = version;
14     hash = "sha256-SjWIctAyczjYGP4buXQBA/RcrdikMSuSBtfhORNmXMc=";
15   };
17   # tests require a network connection
18   doCheck = false;
20   propagatedBuildInputs = with python3Packages; [
21     requests
22     img2pdf
23     iso8601
24     beautifulsoup4
25     soupsieve
26     tabulate
27     future
28   ];
30   meta = {
31     homepage = "https://github.com/RicterZ/nhentai";
32     description = "CLI tool for downloading doujinshi from adult site(s)";
33     license = lib.licenses.mit;
34     maintainers = [ ];
35     mainProgram = "nhentai";
36   };