···56105610 };
56115611 };
5612561256135613+ ledger-autosync = buildPythonPackage rec {
56145614+ name = "ledger-autosync-${version}";
56155615+ version = "0.2.3";
56165616+ src = pkgs.fetchurl {
56175617+ url = "https://pypi.python.org/packages/source/l/ledger-autosync/ledger-autosync-${version}.tar.gz";
56185618+ sha256 = "f19fa66e656309825887171d84a462e64676b1cc36b62e4dd8679ff63926a469";
56195619+ };
56205620+56215621+ buildInputs = [
56225622+ self.ofxclient self.mock
56235623+ # Used at runtime to translate ofx entries to the ledger
56245624+ # format. In fact, user could use either ledger or hledger.
56255625+ pkgs.which pkgs.ledger ];
56265626+56275627+ # Tests are disable since they require hledger and python-ledger
56285628+ doCheck = false;
56295629+56305630+ meta = {
56315631+ homepage = https://gitlab.com/egh/ledger-autosync;
56325632+ description = "ledger-autosync is a program to pull down transactions from your bank and create ledger transactions for them";
56335633+ license = licenses.gpl3;
56345634+ maintainers = with maintainers; [ lewo ];
56355635+ };
56365636+ };
56375637+56385638+56135639 libthumbor = buildPythonPackage rec {
56145640 name = "libthumbor-${version}";
56155641 version = "1.2.0";