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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3, openssl }:
2017-05-23 23:44:38 +00:00
python3.pkgs.buildPythonApplication rec {
2018-07-17 23:16:57 +00:00
pname = "esptool";
2020-11-12 15:24:42 +00:00
version = "3.0";
2017-05-23 23:44:38 +00:00
src = fetchFromGitHub {
owner = "espressif";
repo = "esptool";
rev = "v${version}";
2020-11-12 15:24:42 +00:00
sha256 = "1y022qlcdgdx5a88lkc3sqavklz494afbfyh100lp7xfk3f2mjln";
2017-05-23 23:44:38 +00:00
};
2020-11-12 15:24:42 +00:00
checkInputs = with python3.pkgs;
[ flake8 flake8-future-import flake8-import-order openssl ];
propagatedBuildInputs = with python3.pkgs;
[ pyserial pyaes ecdsa reedsolo bitstring cryptography ];
# wrapPythonPrograms will overwrite esptool.py with a bash script,
# but espefuse.py tries to import it. Since we don't add any binary paths,
# use patchPythonScript directly.
dontWrapPythonPrograms = true;
postFixup = ''
buildPythonPath "$out $pythonPath"
for f in $out/bin/*.py; do
echo "Patching $f"
patchPythonScript "$f"
done
'';
2017-05-23 23:44:38 +00:00
meta = with lib; {
2017-05-23 23:44:38 +00:00
description = "ESP8266 and ESP32 serial bootloader utility";
homepage = "https://github.com/espressif/esptool";
2017-05-23 23:44:38 +00:00
license = licenses.gpl2;
2018-03-01 11:18:14 +00:00
maintainers = with maintainers; [ dezgeg dotlambda ];
2017-05-23 23:44:38 +00:00
platforms = platforms.linux;
};
}