Merge pull request #30948 from adisbladis/pythonPackages.ofxclient-bs4

pythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3
This commit is contained in:
Frederik Rietdijk 2017-10-30 07:48:06 +01:00 committed by GitHub
commit ff40e1b2a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;