esptool: 3.0 -> 3.1

This commit is contained in:
Fabian Affolter 2021-07-09 19:20:34 +02:00
parent 3191d4f0af
commit 3ac0f867c2

View file

@ -2,13 +2,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "esptool";
version = "3.0";
version = "3.1";
src = fetchFromGitHub {
owner = "espressif";
repo = "esptool";
rev = "v${version}";
sha256 = "1y022qlcdgdx5a88lkc3sqavklz494afbfyh100lp7xfk3f2mjln";
sha256 = "sha256-GaGrV8L//pU4kt4HJmY88l5BNtT0IcZox7b24AFjPCI=";
};
checkInputs = with python3.pkgs;
@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "ESP8266 and ESP32 serial bootloader utility";
homepage = "https://github.com/espressif/esptool";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dezgeg dotlambda ];
platforms = platforms.linux;
};