python3.pkgs.weboob: 1.3 -> 1.5
html2text is python3 only now, which implicitly also affects weboob.
This commit is contained in:
parent
78d9669963
commit
1e501c868b
@ -1,19 +1,18 @@
|
|||||||
{ buildPythonPackage, fetchurl, stdenv, isPy27
|
{ buildPythonPackage, fetchPypi, stdenv
|
||||||
, nose, pillow, prettytable, pyyaml, dateutil, gdata
|
, nose, pillow, prettytable, pyyaml, dateutil, gdata
|
||||||
, requests, mechanize, feedparser, lxml, gnupg, pyqt5
|
, requests, mechanize, feedparser, lxml, gnupg, pyqt5
|
||||||
, libyaml, simplejson, cssselect, futures, pdfminer
|
, libyaml, simplejson, cssselect, pdfminer
|
||||||
, termcolor, google_api_python_client, html2text
|
, termcolor, google_api_python_client, html2text
|
||||||
, unidecode
|
, unidecode
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "weboob";
|
pname = "weboob";
|
||||||
version = "1.3";
|
version = "1.5";
|
||||||
disabled = ! isPy27;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchPypi {
|
||||||
url = "https://symlink.me/attachments/download/356/${pname}-${version}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0m5yh49lplvb57dfilczh65ky35fshp3g7ni31pwfxwqi1f7i4f9";
|
sha256 = "1c9z9gid1mbm1cakb2wj6jjkbrmji8y8ac46iqpih9x1h498bhbs";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -37,7 +36,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ pillow prettytable pyyaml dateutil
|
propagatedBuildInputs = [ pillow prettytable pyyaml dateutil
|
||||||
gdata requests mechanize feedparser lxml gnupg pyqt5 libyaml
|
gdata requests mechanize feedparser lxml gnupg pyqt5 libyaml
|
||||||
simplejson cssselect futures pdfminer termcolor
|
simplejson cssselect pdfminer termcolor
|
||||||
google_api_python_client html2text unidecode ];
|
google_api_python_client html2text unidecode ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
@ -50,4 +49,3 @@ buildPythonPackage rec {
|
|||||||
license = stdenv.lib.licenses.agpl3;
|
license = stdenv.lib.licenses.agpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user