Unverified Commit 5ae23a80 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #232717 from mweinelt/quisk-fix

quisk: Migrate to python 3.10
parents ef85c3fe 47e1eefc
Loading
Loading
Loading
Loading
+17 −5
Original line number Diff line number Diff line
{ 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
Original line number Diff line number Diff line
@@ -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 { };