beancount-share: 2023-12-31 -> 0.1.11 (#404848)

This commit is contained in:
Paul Haerle 2025-05-07 11:35:19 +02:00 committed by GitHub
commit d35694987a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 8 deletions

View File

@ -2,21 +2,28 @@
lib,
python3,
fetchFromGitHub,
beancount,
beancount-plugin-utils,
}:
python3.pkgs.buildPythonApplication {
python3.pkgs.buildPythonApplication rec {
pname = "beancount_share";
version = "2023-12-31";
version = "0.1.11";
src = fetchFromGitHub {
owner = "akuukis";
repo = "beancount_share";
rev = "8f925422b9947e88babbeab3fdf7d71c53c9aa9e";
sha256 = "sha256-+ZA84VS0wf9TdrYleYB5OeKz7T8sDtrl4BM7Ft+k7OI=";
rev = "v${version}";
sha256 = "sha256-BW2KEC0pmervT71FBixPcQciEuGcElCd2wW7BZL1xUg=";
};
format = "pyproject";
propagatedBuildInputs = [
beancount
beancount-plugin-utils
];
buildInputs = [
python3.pkgs.setuptools
];
@ -26,8 +33,5 @@ python3.pkgs.buildPythonApplication {
description = "Beancount plugin to share expenses with external partners within one ledger";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ matthiasbeyer ];
broken = true;
# At 2024-06-29, missing unpacked dependency
# https://hydra.nixos.org/build/262800507/nixlog/1
};
}

View File

@ -14983,7 +14983,9 @@ with pkgs;
beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix { };
beancount-share = callPackage ../applications/office/beancount/beancount_share.nix { };
beancount-share = callPackage ../applications/office/beancount/beancount_share.nix {
inherit (python3Packages) beancount beancount-plugin-utils;
};
cataclysmDDA = callPackage ../games/cataclysm-dda { };