frescobaldi: pin to python 3.11 to fix build

This commit is contained in:
éclairevoyant 2024-07-10 22:00:20 -04:00
parent 069af49662
commit 4162e31004
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, python3Packages, pyqtwebengine, lilypond }:
{ lib, stdenv, fetchFromGitHub, python311Packages, lilypond }:
buildPythonApplication rec {
python311Packages.buildPythonApplication rec {
pname = "frescobaldi";
version = "3.3.0";
@ -11,7 +11,7 @@ buildPythonApplication rec {
sha256 = "sha256-Q6ruthNcpjLlYydUetkuTECiCIzu055bw40O8BPGq/A=";
};
propagatedBuildInputs = with python3Packages; [
propagatedBuildInputs = with python311Packages; [
qpageview
lilypond
pygame
@ -22,7 +22,7 @@ buildPythonApplication rec {
pyqtwebengine
];
nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ];
nativeBuildInputs = [ python311Packages.pyqtwebengine.wrapQtAppsHook ];
# Needed because source is fetched from git
preBuild = ''

View File

@ -7974,7 +7974,7 @@ with pkgs;
wxGTK = wxGTK32;
};
frescobaldi = python3Packages.callPackage ../misc/frescobaldi { };
frescobaldi = callPackage ../misc/frescobaldi { };
freshfetch = callPackage ../tools/misc/freshfetch {
inherit (darwin.apple_sdk.frameworks) AppKit CoreFoundation DiskArbitration Foundation IOKit;