forked from mirrors/nixpkgs
Merge pull request #178854 from alyaeanyx/friture-python-3.9
friture: pin Python to 3.9
This commit is contained in:
commit
6d01ecd136
|
@ -1,8 +1,6 @@
|
||||||
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
|
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
|
||||||
|
|
||||||
let
|
python3Packages.buildPythonApplication rec {
|
||||||
py = python3Packages;
|
|
||||||
in py.buildPythonApplication rec {
|
|
||||||
pname = "friture";
|
pname = "friture";
|
||||||
version = "0.49";
|
version = "0.49";
|
||||||
|
|
||||||
|
@ -13,10 +11,10 @@ in py.buildPythonApplication rec {
|
||||||
sha256 = "sha256-xKgyBV/Qc+9PgXyxcT0xG1GXLC6KnjavJ/0SUE+9VSY=";
|
sha256 = "sha256-xKgyBV/Qc+9PgXyxcT0xG1GXLC6KnjavJ/0SUE+9VSY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
|
nativeBuildInputs = (with python3Packages; [ numpy cython scipy ]) ++
|
||||||
[ wrapQtAppsHook ];
|
[ wrapQtAppsHook ];
|
||||||
|
|
||||||
propagatedBuildInputs = with py; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
sounddevice
|
sounddevice
|
||||||
pyopengl
|
pyopengl
|
||||||
pyopengl-accelerate
|
pyopengl-accelerate
|
||||||
|
|
|
@ -27145,7 +27145,9 @@ with pkgs;
|
||||||
|
|
||||||
freerdpUnstable = freerdp;
|
freerdpUnstable = freerdp;
|
||||||
|
|
||||||
friture = libsForQt5.callPackage ../applications/audio/friture { };
|
friture = libsForQt5.callPackage ../applications/audio/friture {
|
||||||
|
python3Packages = python39Packages;
|
||||||
|
};
|
||||||
|
|
||||||
fte = callPackage ../applications/editors/fte { };
|
fte = callPackage ../applications/editors/fte { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue