mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ledger: fix Python 3.10 module build
The current default boost (1.77) doesn’t work with Python 3.10, so use 1.79 instead.
This commit is contained in:
parent
03364a73ef
commit
d4964be44c
@ -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;
|
||||
|
@ -4769,6 +4769,7 @@ in {
|
||||
|
||||
ledger = (toPythonModule (pkgs.ledger.override {
|
||||
usePython = true;
|
||||
boost = pkgs.boost179; # Current default boost (1.77) doesn’t work with Python 3.10.
|
||||
python3 = python;
|
||||
})).py;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user