summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-12-26 02:33:07 +0000
committerOrivej Desh <orivej@gmx.fr>2018-12-26 02:52:28 +0000
commit669705c6205a7feccf4c3ff52a8e5448571b87d1 (patch)
treeee835beba38d252c88850cc304451ff6fdf70a72 /pkgs/development
parent4f909b59b46e273cfb0682df6131e3e3124e0833 (diff)
downloadnixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar.gz
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar.bz2
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar.lz
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar.xz
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.tar.zst
nixpkgs-669705c6205a7feccf4c3ff52a8e5448571b87d1.zip
pythonPackages.ofxparse: fix build
Broken by 0fde2cf4e140d6ca93303bb4622195176ffa94b2 in #49741.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/ofxparse/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/ofxparse/default.nix b/pkgs/development/python-modules/ofxparse/default.nix
index fbbd3899420..377138877c9 100644
--- a/pkgs/development/python-modules/ofxparse/default.nix
+++ b/pkgs/development/python-modules/ofxparse/default.nix
@@ -3,6 +3,7 @@
 , fetchPypi
 , six
 , beautifulsoup4
+, lxml
 }:
 
 buildPythonPackage rec {
@@ -14,7 +15,7 @@ buildPythonPackage rec {
     sha256 = "d8c81fd5089332106da1a2e8919c412c7c677f08af04d557ca767701a04e0918";
   };
 
-  propagatedBuildInputs = [ six beautifulsoup4 ];
+  propagatedBuildInputs = [ six beautifulsoup4 lxml ];
 
   meta = with stdenv.lib; {
     homepage = "http://sites.google.com/site/ofxparse";