diff options
| author | Frederik Rietdijk <freddyrietdijk@fridh.nl> | 2017-10-30 07:48:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-30 07:48:06 +0100 |
| commit | ff40e1b2a41c55ddfcd9eab0ef64ff714523b428 (patch) | |
| tree | 8664b19076d0961c03cd999e8ff15c140a0a896a | |
| parent | Merge pull request #30847 from csingley/plexpy_pr (diff) | |
| parent | pythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3 (diff) | |
| download | nixpkgs-ff40e1b2a41c55ddfcd9eab0ef64ff714523b428.tar.gz | |
Merge pull request #30948 from adisbladis/pythonPackages.ofxclient-bs4
pythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3
| -rw-r--r-- | pkgs/development/python-modules/ofxclient/default.nix | 4 |
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; |
