python27Packages.weboob: Override google_api_python_client
This commit is contained in:
parent
8d9c2fc3ff
commit
2acda72b85
@ -1,4 +1,4 @@
|
|||||||
{ buildPythonPackage, fetchurl, stdenv, isPy27
|
{ buildPythonPackage, fetchurl, fetchPypi, stdenv, isPy27
|
||||||
, 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, futures, pdfminer
|
||||||
@ -6,7 +6,18 @@
|
|||||||
, unidecode
|
, unidecode
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
let
|
||||||
|
# Support for Python 2.7 was dropped in 1.7.7
|
||||||
|
google_api_python_client_python27 = google_api_python_client.overrideDerivation
|
||||||
|
(oldAttrs: rec {
|
||||||
|
pname = "google-api-python-client";
|
||||||
|
version = "1.7.6";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "14w5sdrp0bk9n0r2lmpqmrbf2zclpfq6q7giyahnskkfzdkb165z";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
in buildPythonPackage rec {
|
||||||
pname = "weboob";
|
pname = "weboob";
|
||||||
version = "1.3";
|
version = "1.3";
|
||||||
disabled = ! isPy27;
|
disabled = ! isPy27;
|
||||||
@ -35,8 +46,8 @@ 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 google_api_python_client
|
simplejson cssselect futures pdfminer termcolor
|
||||||
html2text unidecode ];
|
google_api_python_client_python27 html2text unidecode ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
nosetests
|
nosetests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user