summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-12-18 17:56:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2022-08-15 08:15:59 +0200
commit641913bdb64425989cbbf073da21785a472721f9 (patch)
tree4d22fd381ad69b46c08e7b24c29fe49637edcf62
parentd7b6269cd21291e7748b0f46421a27f64a276674 (diff)
beancount-ing-diba: init 0.6.0add-beancount-ing-diba
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--pkgs/applications/office/beancount/beancount-ing-diba.nix31
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 35 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 ];
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e55900398a42..3805f94cd841 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -32415,6 +32415,10 @@ with pkgs;
bastet = callPackage ../games/bastet { };
+ beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix {
+ inherit (python3Packages) buildPythonApplication;
+ };
+
black-hole-solver = callPackage ../games/black-hole-solver {
inherit (perlPackages) PathTiny;
};