urh: 2.9.8 -> 2.9.8-unstable-2025-07-07 (#425892)

This commit is contained in:
Franz Pletz
2025-07-19 08:23:00 +02:00
committed by GitHub
+12 -11
View File
@@ -9,7 +9,6 @@
limesuite,
libiio,
libbladeRF,
imagemagick,
makeDesktopItem,
copyDesktopItems,
qt5,
@@ -20,16 +19,18 @@
python3Packages.buildPythonApplication rec {
pname = "urh";
version = "2.9.8";
format = "setuptools";
version = "2.9.8-unstable-2025-07-07";
pyproject = true;
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
tag = "v${version}";
hash = "sha256-r3d80dzGwgf5Tuwt1IWGcmNbblwBNKTKKm+GGx1r2HE=";
rev = "9061187d326f39de126dd1b8cc943aa33c36ae8d";
hash = "sha256-MjgEa33geZ8Icn7H/Zxvux6rMnSOFcMuwG5n/5cwuMI=";
};
build-system = [ python3Packages.setuptools ];
nativeBuildInputs = [
qt5.wrapQtAppsHook
wrapGAppsHook3
@@ -47,9 +48,9 @@ python3Packages.buildPythonApplication rec {
++ lib.optional USRPSupport uhd
++ lib.optional stdenv.hostPlatform.isLinux qt5.qtwayland;
propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
pyqt5
numpy_1
numpy
psutil
cython
pyzmq
@@ -88,11 +89,11 @@ python3Packages.buildPythonApplication rec {
install -Dm644 data/icons/appicon.png $out/share/pixmaps/urh.png
'';
meta = with lib; {
meta = {
homepage = "https://github.com/jopohl/urh";
description = "Universal Radio Hacker: investigate wireless protocols like a boss";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ fpletz ];
};
}