Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
908 B
Nix
42 lines
908 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
libgcrypt,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "killerbee";
|
|
version = "3.0.0-beta.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "riverloopsec";
|
|
repo = "killerbee";
|
|
tag = version;
|
|
hash = "sha256-WM0Z6sd8S71F8FfhhoUq3MSD/2uvRTY/FsBP7VGGtb0=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
buildInputs = [ libgcrypt ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
pyserial
|
|
pyusb
|
|
rangeparser
|
|
scapy
|
|
];
|
|
|
|
pythonImportsCheck = [ "killerbee" ];
|
|
|
|
meta = {
|
|
description = "IEEE 802.15.4/ZigBee Security Research Toolkit";
|
|
homepage = "https://github.com/riverloopsec/killerbee";
|
|
changelog = "https://github.com/riverloopsec/killerbee/releases/tag/${version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|