mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
df4b0c4854
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fanficfare/versions
29 lines
702 B
Nix
29 lines
702 B
Nix
{ stdenv, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "FanFicFare";
|
|
version = "3.10.5";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0bxz1a0ak6b6zj5xpkzwy8ikxf45kkxdj64sf4ilj43yaqicm0bw";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
beautifulsoup4
|
|
chardet
|
|
html5lib
|
|
html2text
|
|
];
|
|
|
|
doCheck = false; # no tests exist
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tool for making eBooks from fanfiction web sites";
|
|
homepage = https://github.com/JimmXinu/FanFicFare;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lucas8 ];
|
|
inherit version;
|
|
};
|
|
}
|