forked from mirrors/nixpkgs
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, mkDerivationWith, wrapQtAppsHook, python3Packages, fetchFromGitHub
|
|
, qtbase }:
|
|
|
|
let
|
|
version = "0.3.8";
|
|
pname = "nanovna-saver";
|
|
|
|
in mkDerivationWith python3Packages.buildPythonApplication {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NanoVNA-Saver";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0z83rwpnbbs1n74mx8dgh1d1crp90mannj9vfy161dmy4wzc5kpv";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
cython
|
|
scipy_1_4
|
|
pyqt5
|
|
pyserial
|
|
numpy
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
dontWrapGApps = true;
|
|
dontWrapQtApps = true;
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/NanoVNASaver \
|
|
"''${gappsWrapperArgs[@]}" \
|
|
"''${qtWrapperArgs[@]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/NanoVNA-Saver/nanovna-saver";
|
|
description =
|
|
"A tool for reading, displaying and saving data from the NanoVNA";
|
|
longDescription = ''
|
|
A multiplatform tool to save Touchstone files from the NanoVNA, sweep
|
|
frequency spans in segments to gain more than 101 data points, and
|
|
generally display and analyze the resulting data.
|
|
'';
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ zaninime ];
|
|
};
|
|
}
|