summary refs log tree commit diff
path: root/pkgs/tools/misc/esptool
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-10-27 09:01:21 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-10-27 09:01:21 +0000
commit92559348453bcc19c1e02de2ecd8396c2ead9372 (patch)
tree9ff9c8f1b788e2d45ec9f3b52321ae0549bc64c0 /pkgs/tools/misc/esptool
parent22a500a3f87bbce73bd8d777ef920b43a636f018 (diff)
downloadnixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar.gz
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar.bz2
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar.lz
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar.xz
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.tar.zst
nixpkgs-92559348453bcc19c1e02de2ecd8396c2ead9372.zip
esptool: 3.1 -> 3.2
Diffstat (limited to 'pkgs/tools/misc/esptool')
-rw-r--r--pkgs/tools/misc/esptool/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/esptool/default.nix b/pkgs/tools/misc/esptool/default.nix
index 3fc6e96e228..5a543c6e2ad 100644
--- a/pkgs/tools/misc/esptool/default.nix
+++ b/pkgs/tools/misc/esptool/default.nix
@@ -2,13 +2,13 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "esptool";
-  version = "3.1";
+  version = "3.2";
 
   src = fetchFromGitHub {
     owner = "espressif";
     repo = "esptool";
     rev = "v${version}";
-    sha256 = "sha256-GaGrV8L//pU4kt4HJmY88l5BNtT0IcZox7b24AFjPCI=";
+    sha256 = "1jic5kynfan5zirv9pm3pfjps12zf68cpnhl7i1vls2m79zdkfa3";
   };
 
   checkInputs = with python3.pkgs;