2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-29 13:16:18 -04:00
|
|
|
, buildPythonPackage
|
2021-05-08 09:23:46 +02:00
|
|
|
, fetchFromGitHub
|
2018-10-29 13:16:18 -04:00
|
|
|
, six
|
|
|
|
, beautifulsoup4
|
2018-12-26 02:33:07 +00:00
|
|
|
, lxml
|
2018-10-29 13:16:18 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ofxparse";
|
2021-05-08 09:23:46 +02:00
|
|
|
version = "unstable-2020-02-05";
|
2018-10-29 13:16:18 -04:00
|
|
|
|
2021-05-08 09:23:46 +02:00
|
|
|
# The newer changes haven't been released yet and ledger-autosync
|
|
|
|
# depends on them:
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jseutter";
|
|
|
|
repo = "ofxparse";
|
|
|
|
rev = "3236cfd96434feb6bc79a8b66f3400f18e2ad3c4";
|
|
|
|
sha256 = "1rkp174102q7hwjrg3na0qnfd612xb3r360b9blkbprjhzxy7gr7";
|
2018-10-29 13:16:18 -04:00
|
|
|
};
|
|
|
|
|
2018-12-26 02:33:07 +00:00
|
|
|
propagatedBuildInputs = [ six beautifulsoup4 lxml ];
|
2018-10-29 13:16:18 -04:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-29 13:16:18 -04:00
|
|
|
homepage = "http://sites.google.com/site/ofxparse";
|
|
|
|
description = "Tools for working with the OFX (Open Financial Exchange) file format";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|