nixpkgs/pkgs/tools/misc/esptool/default.nix

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

56 lines
1.2 KiB
Nix
Raw Normal View History

2022-05-17 20:24:54 +00:00
{ lib
, fetchFromGitHub
, python3
}:
2017-05-23 23:44:38 +00:00
python3.pkgs.buildPythonApplication rec {
2018-07-17 23:16:57 +00:00
pname = "esptool";
2022-05-17 20:24:54 +00:00
version = "4.4";
2017-05-23 23:44:38 +00:00
src = fetchFromGitHub {
owner = "espressif";
repo = "esptool";
rev = "v${version}";
2022-05-17 20:24:54 +00:00
hash = "sha256-haLwf3loOvqdqQN/iuVBciQ6nCnuc9AqqOGKvDwLBHE=";
2017-05-23 23:44:38 +00:00
};
2022-05-17 20:24:54 +00:00
patches = [
./test-call-bin-directly.patch
];
propagatedBuildInputs = with python3.pkgs; [
bitstring
cryptography
ecdsa
pyserial
reedsolo
];
2020-11-12 15:24:42 +00:00
checkInputs = with python3.pkgs; [
pyelftools
2022-05-17 20:24:54 +00:00
pytest
];
# tests mentioned in `.github/workflows/test_esptool.yml`
checkPhase = ''
runHook preCheck
2022-05-17 20:24:54 +00:00
export ESPSECURE_PY=$out/bin/espsecure.py
export ESPTOOL_PY=$out/bin/esptool.py
${python3.interpreter} test/test_imagegen.py
${python3.interpreter} test/test_espsecure.py
${python3.interpreter} test/test_merge_bin.py
${python3.interpreter} test/test_modules.py
runHook postCheck
'';
meta = with lib; {
2017-05-23 23:44:38 +00:00
description = "ESP8266 and ESP32 serial bootloader utility";
homepage = "https://github.com/espressif/esptool";
2021-07-09 17:20:34 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dezgeg dotlambda ] ++ teams.lumiguide.members;
2017-05-23 23:44:38 +00:00
platforms = platforms.linux;
};
}