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

Changed files
+14 -8
pkgs
applications
office
top-level
+11 -7
pkgs/applications/office/beancount/beancount_share.nix
···
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
···
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
};
}
+3 -1
pkgs/top-level/all-packages.nix
···
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 { };