Merge pull request #325499 from sheepforce/haskell-cpython-fix

haskellPackages.cpython: pin to python 3.11
This commit is contained in:
maralorn 2024-07-09 22:35:26 +02:00 committed by GitHub
commit cc1feff09f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3106,4 +3106,10 @@ self: super: {
}
) super.push-notify-apn;
# Python 3.12 breaks unicode C-API. Requires an upstream fix in the CPython
# package to support Python > 3.12 API. Thus, should be removed at next CPython
# Hackage release.
cpython = super.cpython.override {
python3 = pkgs.python311;
};
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super