esptool: 1.3 -> 2.1
This commit is contained in:
parent
7fa2c54a60
commit
7f89abd820
@ -1,19 +1,18 @@
|
|||||||
{ stdenv, fetchFromGitHub, python3 }:
|
{ stdenv, fetchFromGitHub, python3, openssl }:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
name = "esptool-${version}";
|
name = "esptool-${version}";
|
||||||
version = "1.3";
|
version = "2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "espressif";
|
owner = "espressif";
|
||||||
repo = "esptool";
|
repo = "esptool";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0112fybkz4259gyvhcs18wa6938jp6w7clk66kpd0d1dg70lz1h6";
|
sha256 = "137p0kcscly95qpjzgx1yxm8k2wf5y9v3srvlhp2ajniirgv8ijv";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [ pyserial ];
|
buildInputs = with python3.pkgs; [ flake8 ];
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [ pyserial pyaes ecdsa openssl ];
|
||||||
doCheck = false; # FIXME: requires packaging some new deps
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "ESP8266 and ESP32 serial bootloader utility";
|
description = "ESP8266 and ESP32 serial bootloader utility";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user