Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
43 lines
956 B
Nix
43 lines
956 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
ledger,
|
|
hledger,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ledger-autosync";
|
|
version = "1.2.0";
|
|
pyproject = true;
|
|
|
|
# no tests included in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "egh";
|
|
repo = "ledger-autosync";
|
|
rev = "v${version}";
|
|
hash = "sha256-bbFjDdxYr85OPjdvY3JYtCe/8Epwi+8JN60PKVKbqe0=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ poetry-core ];
|
|
|
|
dependencies = with python3Packages; [
|
|
ofxclient
|
|
ofxparse
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hledger
|
|
ledger
|
|
python3Packages.ledger
|
|
python3Packages.pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/egh/ledger-autosync";
|
|
changelog = "https://github.com/egh/ledger-autosync/releases/tag/v${version}";
|
|
description = "OFX/CSV autosync for ledger and hledger";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ eamsden ];
|
|
};
|
|
}
|