Merge pull request #277895 from matthiasbeyer/add-beancount_share

beancount_share: init at 2023-12-31
This commit is contained in:
Matthias Beyer 2024-01-07 10:25:30 +01:00 committed by GitHub
commit a1f18ac206
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, python3
, fetchFromGitHub
, fetchpatch
}:
python3.pkgs.buildPythonApplication rec {
pname = "beancount_share";
version = "2023-12-31";
src = fetchFromGitHub {
owner = "akuukis";
repo = "beancount_share";
rev = "8f925422b9947e88babbeab3fdf7d71c53c9aa9e";
sha256 = "sha256-+ZA84VS0wf9TdrYleYB5OeKz7T8sDtrl4BM7Ft+k7OI=";
};
format = "pyproject";
buildInputs = [
python3.pkgs.setuptools
];
meta = with lib; {
homepage = "https://github.com/akuukis/beancount_share";
description = "A beancount plugin to share expenses with external partners within one ledger";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matthiasbeyer ];
};
}

View File

@ -37496,6 +37496,8 @@ with pkgs;
beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix { };
beancount-share = callPackage ../applications/office/beancount/beancount_share.nix { };
black-hole-solver = callPackage ../games/black-hole-solver {
inherit (perlPackages) PathTiny;
};