depot/third_party/nixpkgs/pkgs/development/python-modules/ofxparse/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 lines
568 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
six,
beautifulsoup4,
lxml,
}:
buildPythonPackage rec {
pname = "ofxparse";
version = "0.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5";
};
propagatedBuildInputs = [
six
beautifulsoup4
lxml
];
meta = with lib; {
homepage = "http://sites.google.com/site/ofxparse";
description = "Tools for working with the OFX (Open Financial Exchange) file format";
license = licenses.mit;
};
}