vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / office / beancount / beancount_share.nix
blob2d702ad8d7ce751321bfa18224fa47ce9b7aeca9
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "beancount_share";
8   version = "2023-12-31";
10   src = fetchFromGitHub {
11     owner = "akuukis";
12     repo = "beancount_share";
13     rev = "8f925422b9947e88babbeab3fdf7d71c53c9aa9e";
14     sha256 = "sha256-+ZA84VS0wf9TdrYleYB5OeKz7T8sDtrl4BM7Ft+k7OI=";
15   };
17   format = "pyproject";
19   buildInputs = [
20     python3.pkgs.setuptools
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/akuukis/beancount_share";
25     description = "Beancount plugin to share expenses with external partners within one ledger";
26     license = licenses.agpl3Plus;
27     maintainers = with maintainers; [ matthiasbeyer ];
28     broken = true; # At 2024-06-29, missing unpacked dependency
29                    # https://hydra.nixos.org/build/262800507/nixlog/1
30   };