Merge pull request #175665 from reckenrode/ledger-darwin-fix

ledger: fix Python 3.10 module build
This commit is contained in:
Robert Schütz
2022-05-31 23:16:48 -07:00
committed by GitHub
2 changed files with 1 additions and 1 deletions
@@ -50,7 +50,6 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
homepage = "https://ledger-cli.org/";
description = "A double-entry accounting system with a command-line reporting interface";
license = licenses.bsd3;
+1
View File
@@ -4775,6 +4775,7 @@ in {
ledger = (toPythonModule (pkgs.ledger.override {
usePython = true;
boost = pkgs.boost179; # Current default boost (1.77) doesnt work with Python 3.10.
python3 = python;
})).py;