pythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3

This commit is contained in:
adisbladis 2017-10-30 12:06:07 +08:00
parent dc309e98af
commit 8af79c8adc
No known key found for this signature in database
GPG key ID: ED58F95069B004F5

View file

@ -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;