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

25 lines
747 B
Nix
Raw Normal View History

2017-09-18 00:30:13 +00:00
{ stdenv, 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";
2018-10-17 15:47:35 +00:00
version = "2.5.1";
2017-05-23 23:44:38 +00:00
src = fetchFromGitHub {
owner = "espressif";
repo = "esptool";
rev = "v${version}";
2018-10-17 15:47:35 +00:00
sha256 = "19l3b1fqg1n3ch484dcibbi5a3nbmjq086has5pwqn348h4k57mh";
2017-05-23 23:44:38 +00:00
};
2018-03-01 11:10:19 +00:00
checkInputs = with python3.pkgs; [ flake8 flake8-future-import flake8-import-order ];
2017-09-18 00:30:13 +00:00
propagatedBuildInputs = with python3.pkgs; [ pyserial pyaes ecdsa openssl ];
2017-05-23 23:44:38 +00:00
meta = with stdenv.lib; {
description = "ESP8266 and ESP32 serial bootloader utility";
homepage = https://github.com/espressif/esptool;
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;
};
}