Merge pull request #12367 from nlewo/master

ledger-autosync: init at 0.2.3

+26
+26
pkgs/top-level/python-packages.nix
··· 5610 5610 }; 5611 5611 }; 5612 5612 5613 + ledger-autosync = buildPythonPackage rec { 5614 + name = "ledger-autosync-${version}"; 5615 + version = "0.2.3"; 5616 + src = pkgs.fetchurl { 5617 + url = "https://pypi.python.org/packages/source/l/ledger-autosync/ledger-autosync-${version}.tar.gz"; 5618 + sha256 = "f19fa66e656309825887171d84a462e64676b1cc36b62e4dd8679ff63926a469"; 5619 + }; 5620 + 5621 + buildInputs = [ 5622 + self.ofxclient self.mock 5623 + # Used at runtime to translate ofx entries to the ledger 5624 + # format. In fact, user could use either ledger or hledger. 5625 + pkgs.which pkgs.ledger ]; 5626 + 5627 + # Tests are disable since they require hledger and python-ledger 5628 + doCheck = false; 5629 + 5630 + meta = { 5631 + homepage = https://gitlab.com/egh/ledger-autosync; 5632 + description = "ledger-autosync is a program to pull down transactions from your bank and create ledger transactions for them"; 5633 + license = licenses.gpl3; 5634 + maintainers = with maintainers; [ lewo ]; 5635 + }; 5636 + }; 5637 + 5638 + 5613 5639 libthumbor = buildPythonPackage rec { 5614 5640 name = "libthumbor-${version}"; 5615 5641 version = "1.2.0";