3
0
Fork 0
forked from mirrors/nixpkgs

quisk: Migrate to python 3.10

This commit is contained in:
Martin Weinelt 2023-05-19 01:38:35 +02:00
parent 97c8817371
commit 47e1eefcc3
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 18 additions and 6 deletions

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;

View file

@ -33640,7 +33640,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 { };