Skip to content

Commit 1405c66

Browse files
authored
beancount-ing-diba: 0.6.0 -> 1.1.0 (#404849)
2 parents d356949 + 1c991fd commit 1405c66

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

pkgs/applications/office/beancount/beancount-ing-diba.nix

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,28 @@
22
lib,
33
python3,
44
fetchFromGitHub,
5-
fetchpatch,
5+
beangulp,
6+
beancount,
67
}:
78

89
python3.pkgs.buildPythonApplication rec {
910
pname = "beancount-ing-diba";
10-
version = "0.6.0";
11+
version = "1.1.0";
1112

1213
src = fetchFromGitHub {
1314
owner = "siddhantgoel";
1415
repo = "beancount-ing-diba";
1516
rev = "v${version}";
16-
sha256 = "sha256-1cdXqdeTz38n0g13EXJ1/IF/gJJCe1uL/Z5NJz4DL+E=";
17+
sha256 = "sha256-zjwajl+0ix4wnW0bf4MAuO9Lr9F8sBv87TIL5Ghmlxg=";
1718
};
1819

19-
patches = [
20-
(fetchpatch {
21-
name = "use-poetry-core.patch";
22-
url = "https://github.com/siddhantgoel/beancount-ing/commit/2d030330eed313a32c3968a2c8ce9400c6d18a41.patch";
23-
hash = "sha256-6v7eQhgj6d4x9uWSyuO3IxXrSWkJZRS/M4N3j0H3R/U=";
24-
})
25-
];
26-
2720
format = "pyproject";
2821

22+
propagatedBuildInputs = [
23+
beancount
24+
beangulp
25+
];
26+
2927
nativeBuildInputs = with python3.pkgs; [
3028
poetry-core
3129
];

pkgs/top-level/all-packages.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14981,7 +14981,9 @@ with pkgs;
1498114981
physfs = physfs_2;
1498214982
};
1498314983

14984-
beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix { };
14984+
beancount-ing-diba = callPackage ../applications/office/beancount/beancount-ing-diba.nix {
14985+
inherit (python3Packages) beancount beangulp;
14986+
};
1498514987

1498614988
beancount-share = callPackage ../applications/office/beancount/beancount_share.nix {
1498714989
inherit (python3Packages) beancount beancount-plugin-utils;

0 commit comments

Comments
 (0)