urh: 1.3.3 -> 1.5.5

This commit is contained in:
Franz Pletz 2017-03-03 16:40:51 +01:00
parent 0e2a8cd01c
commit 4ffa5fa182
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,17 +1,20 @@
{ stdenv, fetchFromGitHub, python3Packages }:
{ stdenv, fetchFromGitHub, python3Packages, hackrf, rtl-sdr }:
python3Packages.buildPythonApplication rec {
name = "urh-${version}";
version = "1.3.3";
version = "1.5.5";
src = fetchFromGitHub {
owner = "jopohl";
repo = "urh";
rev = "v${version}";
sha256 = "137dsxs4i0lmxwp31g8fzwpwv1i8rsiir9gxvs5cmnwsrbcrdvxh";
sha256 = "1f7hz2zs2dx3v6hpdyz7wyyq1xf641jhpljyhvmjr4zg5m035isa";
};
propagatedBuildInputs = with python3Packages; [ pyqt5 numpy psutil cython ];
buildInputs = [ hackrf rtl-sdr ];
propagatedBuildInputs = with python3Packages; [
pyqt5 numpy psutil cython pyzmq
];
doCheck = false;