Merge pull request #52320 from r-ryantm/auto-update/fanficfare
fanficfare: 3.1.1 -> 3.6.0
This commit is contained in:
commit
ca33a4fa01
@ -1,19 +1,25 @@
|
|||||||
{ stdenv, fetchurl, python27Packages }:
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
python27Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
version = "3.1.1";
|
pname = "FanFicFare";
|
||||||
name = "fanficfare-${version}";
|
version = "3.6.0";
|
||||||
nameprefix = "";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = python3Packages.fetchPypi {
|
||||||
url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "1wklii24vbvq2vi5pqgp3z4lazcplh2i7r2w4d8lkm6pzbw0s8px";
|
sha256 = "1ir3m8wknr8shdbmbpiaw73mdpa7mvidkl6pbs9ca23mgwivxa84";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python27Packages; [ beautifulsoup4 chardet html5lib html2text ];
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
beautifulsoup4
|
||||||
|
chardet
|
||||||
|
html5lib
|
||||||
|
html2text
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false; # no tests exist
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "FanFicFare is a tool for making eBooks from fanfiction web sites";
|
description = "Tool for making eBooks from fanfiction web sites";
|
||||||
homepage = https://github.com/JimmXinu/FanFicFare;
|
homepage = https://github.com/JimmXinu/FanFicFare;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user