Merge pull request #232717 from mweinelt/quisk-fix

quisk: Migrate to python 3.10
This commit is contained in:
Martin Weinelt
2023-05-19 22:32:45 +02:00
committed by GitHub
2 changed files with 18 additions and 6 deletions
+17 -5
View File
@@ -1,7 +1,12 @@
{ lib, python39Packages, fetchPypi
, fftw, alsa-lib, pulseaudio, pyusb, wxPython_4_2 }:
{ lib
, python3
, fetchPypi
, fftw
, alsa-lib
, pulseaudio
}:
python39Packages.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "quisk";
version = "4.2.17";
@@ -10,9 +15,16 @@ python39Packages.buildPythonApplication rec {
sha256 = "sha256-eF/3++wRG0JulVTT+GvtqleBPkzLSZeu+RfHDI1xfOY=";
};
buildInputs = [ fftw alsa-lib pulseaudio ];
buildInputs = [
fftw
alsa-lib
pulseaudio
];
propagatedBuildInputs = [ pyusb wxPython_4_2 ];
propagatedBuildInputs = with python3.pkgs; [
pyusb
wxPython_4_2
];
doCheck = false;
+1 -1
View File
@@ -33658,7 +33658,7 @@ with pkgs;
quirc = callPackage ../tools/graphics/quirc { };
quisk = python39Packages.callPackage ../applications/radio/quisk { };
quisk = callPackage ../applications/radio/quisk { };
quiterss = libsForQt5.callPackage ../applications/networking/newsreaders/quiterss { };