Skip to content

Commit c47b0e6

Browse files
Revert "python3Packages.beancount: 2.3.6 -> 3.0.0" (#382819)
2 parents 96549ac + 454c64c commit c47b0e6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/development/python-modules/beancount/default.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
}:
1919

2020
buildPythonPackage rec {
21-
version = "3.0.0";
21+
version = "2.3.6";
2222
format = "setuptools";
2323
pname = "beancount";
2424

2525
disabled = !isPy3k;
2626

2727
src = fetchPypi {
2828
inherit pname version;
29-
hash = "sha256-z2aGhpx+o+78CU7hPthmv196K7DGHk1PXfPjX4Rs/98=";
29+
hash = "sha256-gB+Tvta1fS4iQ2aIxInVob8fduIQ887RhoB1fmDTR1o=";
3030
};
3131

3232
# Tests require files not included in the PyPI archive.
@@ -49,6 +49,10 @@ buildPythonPackage rec {
4949
pytest
5050
];
5151

52+
# beancount cannot be directly bumped to 3.x
53+
# e.g. https://github.com/NixOS/nixpkgs/issues/380197
54+
passthru.skipBulkUpdate = true;
55+
5256
meta = with lib; {
5357
homepage = "https://github.com/beancount/beancount";
5458
description = "Double-entry bookkeeping computer language";

0 commit comments

Comments
 (0)