52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, python3Packages, fetchFromGitHub, ledger, hledger, useLedger ? true, useHledger ? true }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ledger-autosync";
|
|
version = "1.0.2";
|
|
|
|
# no tests included in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "egh";
|
|
repo = "ledger-autosync";
|
|
rev = "v${version}";
|
|
sha256 = "0sh32jcf8iznnbg1kqlrswbzfmn4h3gkw32q20xwxzz4935pz1qk";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
asn1crypto
|
|
beautifulsoup4
|
|
cffi
|
|
cryptography
|
|
entrypoints
|
|
fuzzywuzzy
|
|
idna
|
|
jeepney
|
|
keyring
|
|
lxml
|
|
mock
|
|
nose
|
|
ofxclient
|
|
ofxhome
|
|
ofxparse
|
|
pbr
|
|
pycparser
|
|
secretstorage
|
|
six
|
|
] ++ lib.optional useLedger ledger
|
|
++ lib.optional useHledger hledger;
|
|
|
|
# Checks require ledger as a python package,
|
|
# ledger does not support python3 while ledger-autosync requires it.
|
|
checkInputs = with python3Packages; [ ledger hledger nose mock ];
|
|
checkPhase = ''
|
|
nosetests -a generic -a ledger -a hledger
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/egh/ledger-autosync";
|
|
description = "OFX/CSV autosync for ledger and hledger";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ eamsden ];
|
|
};
|
|
}
|