about summary refs log tree commit diff
path: root/pkgs/applications/office/beancount/beancount-ing-diba.nix
blob: 67c76f73811966adf97ae9c2de1225e6cb3fcd43 (plain) (blame)
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
{ lib
, stdenv
, fetchFromGitHub
, buildPythonApplication
, poetry
}:

buildPythonApplication rec {
  pname = "beancount-ing-diba";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "siddhantgoel";
    repo = "beancount-ing-diba";
    rev = "v${version}";
    sha256 = "sha256-1cdXqdeTz38n0g13EXJ1/IF/gJJCe1uL/Z5NJz4DL+E=";
  };

  format = "pyproject";

  nativeBuildInputs = [
    poetry
  ];

  meta = with lib; {
    homepage = "https://github.com/siddhantgoel/beancount-ing-diba";
    description = "Beancount Importers for ING-DiBa (Germany) CSV Exports";
    license = licenses.mit;
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}