2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 17:16:18 +00:00
|
|
|
, buildPythonPackage
|
2021-06-26 13:15:46 +00:00
|
|
|
, fetchPypi
|
2018-10-29 17:16:18 +00:00
|
|
|
, six
|
|
|
|
, beautifulsoup4
|
2018-12-26 02:33:07 +00:00
|
|
|
, lxml
|
2018-10-29 17:16:18 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ofxparse";
|
2021-06-26 13:15:46 +00:00
|
|
|
version = "0.21";
|
2018-10-29 17:16:18 +00:00
|
|
|
|
2021-06-26 13:15:46 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5";
|
2018-10-29 17:16:18 +00:00
|
|
|
};
|
|
|
|
|
2018-12-26 02:33:07 +00:00
|
|
|
propagatedBuildInputs = [ six beautifulsoup4 lxml ];
|
2018-10-29 17:16:18 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 17:16:18 +00:00
|
|
|
homepage = "http://sites.google.com/site/ofxparse";
|
|
|
|
description = "Tools for working with the OFX (Open Financial Exchange) file format";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|