summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-10-30 07:48:06 +0100
committerGitHub <noreply@github.com>2017-10-30 07:48:06 +0100
commitff40e1b2a41c55ddfcd9eab0ef64ff714523b428 (patch)
tree8664b19076d0961c03cd999e8ff15c140a0a896a
parentMerge pull request #30847 from csingley/plexpy_pr (diff)
parentpythonPackages.ofxclient: Depend on beautifulsoup4 instead of beautifulsoup3 (diff)
downloadnixpkgs-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.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;