2021-02-12 12:08:43 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
2019-05-19 11:12:32 +01:00
|
|
|
|
2021-02-12 12:08:43 +00:00
|
|
|
with python3Packages; buildPythonApplication rec {
|
2019-05-19 11:12:32 +01:00
|
|
|
pname = "nrfutil";
|
2020-07-13 12:50:11 +01:00
|
|
|
version = "6.1";
|
2019-05-19 11:12:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NordicSemiconductor";
|
|
|
|
repo = "pc-nrfutil";
|
|
|
|
rev = "v${version}";
|
2020-07-13 12:50:11 +01:00
|
|
|
sha256 = "0g43lf5jmk0qxb7r4h68wr38fli6pjjk67w8l2cpdm9rd8jz4lpn";
|
2019-05-19 11:12:32 +01:00
|
|
|
};
|
|
|
|
|
2020-07-13 12:50:11 +01:00
|
|
|
propagatedBuildInputs = [ pc-ble-driver-py six pyserial enum34 click ecdsa
|
2019-05-19 11:12:32 +01:00
|
|
|
protobuf tqdm piccata pyspinel intelhex pyyaml crcmod libusb1 ipaddress ];
|
|
|
|
|
|
|
|
checkInputs = [ nose behave ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
mkdir test-reports
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-05-19 11:12:32 +01:00
|
|
|
description = "Device Firmware Update tool for nRF chips";
|
|
|
|
homepage = "https://github.com/NordicSemiconductor/pc-nrfutil";
|
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
}
|