nixpkgs/pkgs/applications/radio/btlejack/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
654 B
Nix
Raw Normal View History

2020-07-02 12:26:33 +00:00
{ lib, buildPythonApplication, fetchFromGitHub, pyserial, halo }:
buildPythonApplication rec {
pname = "btlejack";
2022-11-18 12:19:31 +00:00
version = "2.1.1";
2020-07-02 12:26:33 +00:00
src = fetchFromGitHub {
owner = "virtualabs";
repo = "btlejack";
2022-11-18 12:19:31 +00:00
rev = "refs/tags/v${version}";
sha256 = "sha256-Q6y9murV1o2i1sluqTVB5+X3B7ywFsI0ZvlJjHrHSpo=";
2020-07-02 12:26:33 +00:00
};
postPatch = ''
sed -i "s|^.*'argparse',$||" setup.py
'';
propagatedBuildInputs = [ pyserial halo ];
meta = with lib; {
homepage = "https://github.com/virtualabs/btlejack";
description = "Bluetooth Low Energy Swiss-army knife";
license = licenses.mit;
maintainers = with maintainers; [ oxzi ];
};
}