about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ofxclient/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/ofxclient/default.nix')
-rw-r--r--pkgs/development/python-modules/ofxclient/default.nix19
1 files changed, 16 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ofxclient/default.nix b/pkgs/development/python-modules/ofxclient/default.nix
index c0c06b1ca91e..f763c6f23294 100644
--- a/pkgs/development/python-modules/ofxclient/default.nix
+++ b/pkgs/development/python-modules/ofxclient/default.nix
@@ -1,5 +1,12 @@
-{ lib, buildPythonPackage, fetchPypi,
- ofxhome, ofxparse, beautifulsoup4, lxml, keyring
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  ofxhome,
+  ofxparse,
+  beautifulsoup4,
+  lxml,
+  keyring,
 }:
 
 buildPythonPackage rec {
@@ -19,7 +26,13 @@ buildPythonPackage rec {
   # ImportError: No module named tests
   doCheck = false;
 
-  propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup4 lxml keyring ];
+  propagatedBuildInputs = [
+    ofxhome
+    ofxparse
+    beautifulsoup4
+    lxml
+    keyring
+  ];
 
   meta = with lib; {
     homepage = "https://github.com/captin411/ofxclient";