55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "nrfutil";
|
|
version = "6.1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NordicSemiconductor";
|
|
repo = "pc-nrfutil";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-WiXqeQObhXszDcLxJN8ABd2ZkxsOUvtZQSVP8cYlT2M=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
click
|
|
crcmod
|
|
ecdsa
|
|
libusb1
|
|
intelhex
|
|
pc-ble-driver-py
|
|
piccata
|
|
protobuf
|
|
pyserial
|
|
pyspinel
|
|
pyyaml
|
|
tqdm
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
behave
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Workaround: pythonRelaxDepsHook doesn't work for this.
|
|
postPatch = ''
|
|
mkdir test-reports
|
|
substituteInPlace requirements.txt \
|
|
--replace "libusb1==1.9.3" "libusb1" \
|
|
--replace "protobuf >=3.17.3, < 4.0.0" "protobuf"
|
|
substituteInPlace nordicsemi/dfu/tests/test_signing.py \
|
|
--replace "self.assertEqual(expected_vk_pem, vk_pem)" ""
|
|
'';
|
|
|
|
meta = {
|
|
description = "Device Firmware Update tool for nRF chips";
|
|
homepage = "https://github.com/NordicSemiconductor/pc-nrfutil";
|
|
license = lib.licenses.unfreeRedistributable;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ gebner ];
|
|
};
|
|
}
|