nixpkgs-suyu/pkgs/tools/text/fanficfare/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
711 B
Nix
Raw Normal View History

{ lib, python3Packages }:
2017-04-13 22:14:19 +02:00
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
2021-12-25 08:46:17 +01:00
version = "4.8.0";
2017-04-13 22:14:19 +02:00
src = python3Packages.fetchPypi {
inherit pname version;
2021-12-25 08:46:17 +01:00
sha256 = "0h20cw9z6k3z42fhl48pfxcqrk3i45zp4f4xm6pz7jqjzi17h9fk";
2017-04-13 22:14:19 +02:00
};
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
chardet
2021-12-25 08:46:17 +01:00
cloudscraper
html5lib
html2text
2021-12-25 08:46:17 +01:00
requests-file
];
doCheck = false; # no tests exist
2017-04-13 22:14:19 +02:00
meta = with lib; {
description = "Tool for making eBooks from fanfiction web sites";
2020-03-04 23:17:43 +01:00
homepage = "https://github.com/JimmXinu/FanFicFare";
2017-04-13 22:14:19 +02:00
license = licenses.gpl3;
2021-03-04 08:29:36 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ dwarfmaster ];
2017-04-13 22:14:19 +02:00
};
}