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