472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, softhsm
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "esptool";
|
|
version = "4.8.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "espressif";
|
|
repo = "esptool";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cNEg2a3j7Vql06GwVaE9y86UtMkNsUdJYM00OEUra2w=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs ci
|
|
|
|
substituteInPlace test/test_espsecure_hsm.py \
|
|
--replace-fail "/usr/lib/softhsm" "${lib.getLib softhsm}/lib/softhsm"
|
|
'';
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
argcomplete
|
|
bitstring
|
|
cryptography
|
|
ecdsa
|
|
intelhex
|
|
pyserial
|
|
reedsolo
|
|
pyyaml
|
|
];
|
|
|
|
optional-dependencies = with python3Packages; {
|
|
hsm = [ python-pkcs11 ];
|
|
};
|
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
pyelftools
|
|
pytestCheckHook
|
|
softhsm
|
|
] ++ lib.flatten (lib.attrValues optional-dependencies);
|
|
|
|
# tests mentioned in `.github/workflows/test_esptool.yml`
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
export SOFTHSM2_CONF=$(mktemp)
|
|
echo "directories.tokendir = $(mktemp -d)" > "$SOFTHSM2_CONF"
|
|
./ci/setup_softhsm2.sh
|
|
|
|
pytest test/test_imagegen.py
|
|
pytest test/test_espsecure.py
|
|
pytest test/test_espsecure_hsm.py
|
|
pytest test/test_merge_bin.py
|
|
pytest test/test_image_info.py
|
|
pytest test/test_modules.py
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/espressif/esptool/blob/${src.rev}/CHANGELOG.md";
|
|
description = "ESP8266 and ESP32 serial bootloader utility";
|
|
homepage = "https://github.com/espressif/esptool";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ dezgeg dotlambda ] ++ teams.lumiguide.members;
|
|
platforms = with platforms; linux ++ darwin;
|
|
mainProgram = "esptool.py";
|
|
};
|
|
}
|