python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / nhentai / default.nix
blob6357389776d9be211994d42dfe75597b5c81f99b
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "nhentai";
5   version = "0.4.16";
6   src = python3Packages.fetchPypi {
7     inherit pname version;
8     sha256 = "sha256-2lzrQqUx3lPM+OAUO/SwT+fAuG7kWmUnTACNUiP7d1M=";
9   };
11   propagatedBuildInputs = with python3Packages; [
12     requests
13     iso8601
14     beautifulsoup4
15     soupsieve
16     tabulate
17     future
18   ];
20   meta = with lib; {
21     homepage = "https://github.com/RicterZ/nhentai";
22     description = "nHentai is a CLI tool for downloading doujinshi from <http://nhentai.net>";
23     license = licenses.mit;
24     maintainers = with maintainers; [ travisdavis-ops ];
25   };