about summary refs log tree commit diff
path: root/pkgs/development/python-modules/weboob/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/weboob/default.nix')
-rw-r--r--pkgs/development/python-modules/weboob/default.nix65
1 files changed, 30 insertions, 35 deletions
diff --git a/pkgs/development/python-modules/weboob/default.nix b/pkgs/development/python-modules/weboob/default.nix
index 79a88db2a5761..37d639ee336b7 100644
--- a/pkgs/development/python-modules/weboob/default.nix
+++ b/pkgs/development/python-modules/weboob/default.nix
@@ -1,29 +1,30 @@
-{ lib
-, babel
-, buildPythonPackage
-, cssselect
-, feedparser
-, fetchPypi
-, gdata
-, gnupg
-, google-api-python-client
-, html2text
-, libyaml
-, lxml
-, mechanize
-, nose
-, pdfminer-six
-, pillow
-, prettytable
-, pyqt5
-, pytestCheckHook
-, python-dateutil
-, pythonOlder
-, pyyaml
-, requests
-, simplejson
-, termcolor
-, unidecode
+{
+  lib,
+  babel,
+  buildPythonPackage,
+  cssselect,
+  feedparser,
+  fetchPypi,
+  gdata,
+  gnupg,
+  google-api-python-client,
+  html2text,
+  libyaml,
+  lxml,
+  mechanize,
+  nose,
+  pdfminer-six,
+  pillow,
+  prettytable,
+  pyqt5,
+  pytestCheckHook,
+  python-dateutil,
+  pythonOlder,
+  pyyaml,
+  requests,
+  simplejson,
+  termcolor,
+  unidecode,
 }:
 
 buildPythonPackage rec {
@@ -38,9 +39,7 @@ buildPythonPackage rec {
     sha256 = "1c69vzf8sg8471lcaafpz9iw2q3rfj5hmcpqrs2k59fkgbvy32zw";
   };
 
-  nativeBuildInputs = [
-    pyqt5
-  ];
+  nativeBuildInputs = [ pyqt5 ];
 
   propagatedBuildInputs = [
     babel
@@ -76,17 +75,13 @@ buildPythonPackage rec {
       --replace "weboob.tools.capabilities.bank.transactions," ""
   '';
 
-  nativeCheckInputs = [
-    nose
-  ];
+  nativeCheckInputs = [ nose ];
 
   checkPhase = ''
     nosetests
   '';
 
-  pythonImportsCheck = [
-    "weboob"
-  ];
+  pythonImportsCheck = [ "weboob" ];
 
   meta = with lib; {
     description = "Collection of applications and APIs to interact with websites";