1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, six
5, beautifulsoup4
6, lxml
7}:
8
9buildPythonPackage rec {
10 pname = "ofxparse";
11 version = "unstable-2020-02-05";
12
13 # The newer changes haven't been released yet and ledger-autosync
14 # depends on them:
15 src = fetchFromGitHub {
16 owner = "jseutter";
17 repo = "ofxparse";
18 rev = "3236cfd96434feb6bc79a8b66f3400f18e2ad3c4";
19 sha256 = "1rkp174102q7hwjrg3na0qnfd612xb3r360b9blkbprjhzxy7gr7";
20 };
21
22 propagatedBuildInputs = [ six beautifulsoup4 lxml ];
23
24 meta = with lib; {
25 homepage = "http://sites.google.com/site/ofxparse";
26 description = "Tools for working with the OFX (Open Financial Exchange) file format";
27 license = licenses.mit;
28 };
29
30}