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