friture: pin python to 3.9

This commit is contained in:
alyaeanyx
2022-07-04 14:21:46 +02:00
parent d95cf682d8
commit 35278579b0
2 changed files with 6 additions and 6 deletions
+3 -5
View File
@@ -1,8 +1,6 @@
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
let
py = python3Packages;
in py.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "friture";
version = "0.49";
@@ -13,10 +11,10 @@ in py.buildPythonApplication rec {
sha256 = "sha256-xKgyBV/Qc+9PgXyxcT0xG1GXLC6KnjavJ/0SUE+9VSY=";
};
nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
nativeBuildInputs = (with python3Packages; [ numpy cython scipy ]) ++
[ wrapQtAppsHook ];
propagatedBuildInputs = with py; [
propagatedBuildInputs = with python3Packages; [
sounddevice
pyopengl
pyopengl-accelerate
+3 -1
View File
@@ -26817,7 +26817,9 @@ with pkgs;
freerdpUnstable = freerdp;
friture = libsForQt5.callPackage ../applications/audio/friture { };
friture = libsForQt5.callPackage ../applications/audio/friture {
python3Packages = python39Packages;
};
fte = callPackage ../applications/editors/fte { };