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