mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
30 lines
701 B
Nix
30 lines
701 B
Nix
{ stdenv, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "FanFicFare";
|
|
version = "3.8.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1lwzg1mghjfggjyf35vqakfwkd4xcvcx2xfqnz0m3imlxk729kdl";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|