8 python3.pkgs.buildPythonApplication rec {
10 version = "3.0.0-beta.2";
13 src = fetchFromGitHub {
14 owner = "riverloopsec";
16 rev = "refs/tags/${version}";
17 hash = "sha256-WM0Z6sd8S71F8FfhhoUq3MSD/2uvRTY/FsBP7VGGtb0=";
20 build-system = with python3.pkgs; [ setuptools ];
22 buildInputs = with python3.pkgs; [ libgcrypt ];
24 dependencies = with python3.pkgs; [
31 pythonImportsCheck = [ "killerbee" ];
34 description = "IEEE 802.15.4/ZigBee Security Research Toolkit";
35 homepage = "https://github.com/riverloopsec/killerbee";
36 changelog = "https://github.com/riverloopsec/killerbee/releases/tag/${version}";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ fab ];
39 platforms = platforms.linux;