Unverified Commit 4162e310 authored by éclairevoyant's avatar éclairevoyant
Browse files

frescobaldi: pin to python 3.11 to fix build

parent 069af496
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
{ 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 = ''
+1 −1
Original line number Diff line number Diff line
@@ -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;