biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / radio / quisk / default.nix
blobb364b6fd63364b5332e8cf3a0095489e22d54e29
1 { lib
2 , python3
3 , fetchPypi
4 , fftw
5 , alsa-lib
6 , pulseaudio
7 }:
9 python3.pkgs.buildPythonApplication rec {
10   pname = "quisk";
11   version = "4.2.39";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-LE7VPKzpDycUNHpdmO43GqlHnF/gwr6H7LWq8DpcXdk=";
16   };
18   buildInputs = [
19     fftw
20     alsa-lib
21     pulseaudio
22   ];
24   propagatedBuildInputs = with python3.pkgs; [
25     pyusb
26     wxpython
27   ];
29   doCheck = false;
31   meta = with lib; {
32     description = "SDR transceiver for radios that use the Hermes protocol";
33     longDescription = ''
34       QUISK is a Software Defined Radio (SDR) transceiver. You supply radio
35       hardware that converts signals at the antenna to complex (I/Q) data at an
36       intermediate frequency (IF). Data can come from a sound card, Ethernet or
37       USB. Quisk then filters and demodulates the data and sends the audio to
38       your speakers or headphones. For transmit, Quisk takes the microphone
39       signal, converts it to I/Q data and sends it to the hardware.
41       Quisk can be used with SoftRock, Hermes Lite 2, HiQSDR, Odyssey and many
42       radios that use the Hermes protocol. Quisk can connect to digital
43       programs like Fldigi and WSJT-X. Quisk can be connected to other software
44       like N1MM+ and software that uses Hamlib.
45     '';
46     license = licenses.gpl2Plus;
47     homepage = "https://james.ahlstrom.name/quisk/";
48     maintainers = with maintainers; [ pulsation kashw2 ];
49     platforms = platforms.linux;
50   };