about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ofxclient
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2017-10-30 12:06:07 +0800
committeradisbladis <adis@blad.is>2017-10-30 12:06:07 +0800
commit8af79c8adc53909923164cf315913facfe5499ba (patch)
tree477304874094c7b659cbf4f8841822c03e97c3c4 /pkgs/development/python-modules/ofxclient
parentdc309e98afc58671d60ec28b9546cc5cc0d085ce (diff)
downloadnixlib-8af79c8adc53909923164cf315913facfe5499ba.tar
nixlib-8af79c8adc53909923164cf315913facfe5499ba.tar.gz
nixlib-8af79c8adc53909923164cf315913facfe5499ba.tar.bz2
nixlib-8af79c8adc53909923164cf315913facfe5499ba.tar.lz
nixlib-8af79c8adc53909923164cf315913facfe5499ba.tar.xz
nixlib-8af79c8adc53909923164cf315913facfe5499ba.tar.zst
nixlib-8af79c8adc53909923164cf315913facfe5499ba.zip
pythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3
Diffstat (limited to 'pkgs/development/python-modules/ofxclient')
-rw-r--r--pkgs/development/python-modules/ofxclient/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ofxclient/default.nix b/pkgs/development/python-modules/ofxclient/default.nix
index c7877675530a..3b5fa1f531a2 100644
--- a/pkgs/development/python-modules/ofxclient/default.nix
+++ b/pkgs/development/python-modules/ofxclient/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonPackage, fetchPypi,
- ofxhome, ofxparse, beautifulsoup, lxml, keyring
+ ofxhome, ofxparse, beautifulsoup4, lxml, keyring
 }:
 
 buildPythonPackage rec {
@@ -19,7 +19,7 @@ buildPythonPackage rec {
   # ImportError: No module named tests
   doCheck = false;
 
-  propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup lxml keyring ];
+  propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup4 lxml keyring ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/captin411/ofxclient;