1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, beautifulsoup4 6, lxml 7}: 8 9buildPythonPackage rec { 10 pname = "ofxparse"; 11 version = "0.21"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5"; 16 }; 17 18 propagatedBuildInputs = [ six beautifulsoup4 lxml ]; 19 20 meta = with lib; { 21 homepage = "http://sites.google.com/site/ofxparse"; 22 description = "Tools for working with the OFX (Open Financial Exchange) file format"; 23 license = licenses.mit; 24 }; 25 26}