Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
781 B
Nix
38 lines
781 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
beancount,
|
|
beancount-plugin-utils,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "beancount_share";
|
|
version = "0.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "akuukis";
|
|
repo = "beancount_share";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BW2KEC0pmervT71FBixPcQciEuGcElCd2wW7BZL1xUg=";
|
|
};
|
|
|
|
format = "pyproject";
|
|
|
|
propagatedBuildInputs = [
|
|
beancount
|
|
beancount-plugin-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
python3.pkgs.setuptools
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/akuukis/beancount_share";
|
|
description = "Beancount plugin to share expenses with external partners within one ledger";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
};
|
|
}
|