summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/office/beancount/beancount-ing-diba.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/office/beancount/beancount-ing-diba.nix')
-rw-r--r--pkgs/applications/office/beancount/beancount-ing-diba.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/office/beancount/beancount-ing-diba.nix b/pkgs/applications/office/beancount/beancount-ing-diba.nix
new file mode 100644
index 000000000000..67c76f738119
--- /dev/null
+++ b/pkgs/applications/office/beancount/beancount-ing-diba.nix
@@ -0,0 +1,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 ];
+ };
+}