depot/pkgs/applications/office/beancount/beancount_share.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
829 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
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 = "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
};
}