1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5, beautifulsoup4
6, lxml
7}:
8
9buildPythonPackage rec {
10 pname = "ofxparse";
11 version = "0.20";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0zn3grc6xhgzcc81qc3dxkkwk731cjjqqhb46smw12lk09cdnigb";
16 };
17
18 propagatedBuildInputs = [ six beautifulsoup4 lxml ];
19
20 meta = with stdenv.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}