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