Merge pull request #69979 from r-ryantm/auto-update/urh

urh: 2.7.3 -> 2.8.0
This commit is contained in:
markuskowa 2019-11-12 23:10:51 +01:00 committed by GitHub
commit fbfc258f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,31 @@
{ stdenv, lib, fetchFromGitHub, python3Packages { stdenv, lib, fetchFromGitHub, python3Packages
, hackrf, rtl-sdr, airspy, limesuite, libiio , hackrf, rtl-sdr, airspy, limesuite, libiio
, qt5
, USRPSupport ? false, uhd }: , USRPSupport ? false, uhd }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "urh"; pname = "urh";
version = "2.7.3"; version = "2.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jopohl"; owner = "jopohl";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1jrrj9c4ddm37m8j0g693xjimpnlvx7lan5kxish5p14xpwdak35"; sha256 = "1c87lff9bqhf574420ycqz88x6ad5hmy36wrb8pi0dqd1s1d72qb";
}; };
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ] buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ]
++ lib.optional USRPSupport uhd; ++ lib.optional USRPSupport uhd;
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
pyqt5 numpy psutil cython pyzmq pyaudio pyqt5 numpy psutil cython pyzmq pyaudio setuptools
]; ];
postFixup = ''
wrapQtApp $out/bin/urh
'';
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {