lol

pythonPackages.weboob: 1.1 -> 1.3

authored by

Nadrieril and committed by
Frederik Rietdijk
ad7ab434 89467cf1

+39 -20
+38
pkgs/development/python-modules/weboob/default.nix
··· 1 + { buildPythonPackage, fetchurl, stdenv, isPy27 2 + , nose, pillow, prettytable, pyyaml, dateutil, gdata 3 + , requests, mechanize, feedparser, lxml, gnupg, pyqt5 4 + , libyaml, simplejson, cssselect, futures, pdfminer 5 + , termcolor, google_api_python_client, html2text 6 + , unidecode 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "weboob"; 11 + version = "1.3"; 12 + disabled = ! isPy27; 13 + 14 + src = fetchurl { 15 + url = "https://symlink.me/attachments/download/356/${pname}-${version}.tar.gz"; 16 + sha256 = "0m5yh49lplvb57dfilczh65ky35fshp3g7ni31pwfxwqi1f7i4f9"; 17 + }; 18 + 19 + setupPyBuildFlags = ["--qt" "--xdg"]; 20 + 21 + checkInputs = [ nose ]; 22 + 23 + propagatedBuildInputs = [ pillow prettytable pyyaml dateutil 24 + gdata requests mechanize feedparser lxml gnupg pyqt5 libyaml 25 + simplejson cssselect futures pdfminer termcolor google_api_python_client 26 + html2text unidecode ]; 27 + 28 + checkPhase = '' 29 + nosetests 30 + ''; 31 + 32 + meta = { 33 + homepage = http://weboob.org; 34 + description = "Collection of applications and APIs to interact with websites without requiring the user to open a browser"; 35 + license = stdenv.lib.licenses.agpl3; 36 + }; 37 + } 38 +
+1 -20
pkgs/top-level/python-packages.nix
··· 20097 20097 }; 20098 20098 }; 20099 20099 20100 - weboob = buildPythonPackage rec { 20101 - name = "weboob-1.1"; 20102 - disabled = ! isPy27; 20103 - 20104 - src = pkgs.fetchurl { 20105 - url = "https://symlink.me/attachments/download/324/${name}.tar.gz"; 20106 - sha256 = "0736c5wsck2abxlwvx8i4496kafk9xchkkzhg4dcfbj0isldih6b"; 20107 - }; 20108 - 20109 - setupPyBuildFlags = ["--qt" "--xdg"]; 20110 - 20111 - propagatedBuildInputs = with self; [ pillow prettytable pyyaml dateutil gdata requests mechanize feedparser lxml pkgs.gnupg pyqt4 pkgs.libyaml simplejson cssselect futures pdfminer termcolor ]; 20112 - 20113 - meta = { 20114 - homepage = http://weboob.org; 20115 - description = "Collection of applications and APIs to interact with websites without requiring the user to open a browser"; 20116 - license = licenses.agpl3; 20117 - maintainers = with maintainers; [ ]; 20118 - }; 20119 - }; 20100 + weboob = callPackage ../development/python-modules/weboob { }; 20120 20101 20121 20102 datadiff = buildPythonPackage rec { 20122 20103 name = "datadiff-1.1.6";