blob: c5abcf483e4f3235b14f523c0a52e97be8a5bfdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
python3,
fetchFromGitHub,
beangulp,
beancount,
}:
python3.pkgs.buildPythonApplication rec {
pname = "beancount-ing-diba";
version = "1.1.0";
src = fetchFromGitHub {
owner = "siddhantgoel";
repo = "beancount-ing";
rev = "v${version}";
sha256 = "sha256-zjwajl+0ix4wnW0bf4MAuO9Lr9F8sBv87TIL5Ghmlxg=";
};
pyproject = true;
propagatedBuildInputs = [
beancount
beangulp
];
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
meta = {
homepage = "https://github.com/siddhantgoel/beancount-ing";
description = "Beancount Importers for ING-DiBa (Germany) CSV Exports";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthiasbeyer ];
};
}
|