about summary refs log tree commit diff
path: root/pkgs/tools/misc/esphome
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-09-29 06:02:26 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-29 14:30:48 +0200
commitc57357368c571c8646dec49675700b1a03758607 (patch)
treee93dba9a4cc131fb502b62be93cd6c27a5e9dab0 /pkgs/tools/misc/esphome
parent8f267bdfbe31b01eb82ca36a27e67f159a4a2f3e (diff)
esphome: 2022.9.1 -> 2022.9.2
https://github.com/esphome/esphome/releases/tag/2022.9.2

Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
Diffstat (limited to 'pkgs/tools/misc/esphome')
-rw-r--r--pkgs/tools/misc/esphome/dashboard.nix5
-rw-r--r--pkgs/tools/misc/esphome/default.nix4
2 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/esphome/dashboard.nix b/pkgs/tools/misc/esphome/dashboard.nix
index a6a85808f352c..6dcee4967e106 100644
--- a/pkgs/tools/misc/esphome/dashboard.nix
+++ b/pkgs/tools/misc/esphome/dashboard.nix
@@ -5,11 +5,12 @@
 
 buildPythonPackage rec {
   pname = "esphome-dashboard";
-  version = "20220920.1";
+  version = "20220925.0";
+  format = "setuptools";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-qmutcnsz3utVUmVZZEYYiemOGdQ4Ima2ueD4LyYaOdU=";
+    hash = "sha256-jlHS+Hdu1FWV/nJiiferOdyThWyIc21uAFFlh4BD+M4=";
   };
 
   # no tests
diff --git a/pkgs/tools/misc/esphome/default.nix b/pkgs/tools/misc/esphome/default.nix
index afefc18e18b3d..4dc8058c83c4a 100644
--- a/pkgs/tools/misc/esphome/default.nix
+++ b/pkgs/tools/misc/esphome/default.nix
@@ -15,14 +15,14 @@ let
 in
 with python.pkgs; buildPythonApplication rec {
   pname = "esphome";
-  version = "2022.9.1";
+  version = "2022.9.2";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-j6qzCzPiChvO1WR+ZaVILgONcdOzwlE4TBDnI9R6FjM=";
+    hash = "sha256-PVJZ2cOguXIh96246AVofTg1ZWqWJPFcDXlPk3Rn+Cs=";
   };
 
   postPatch = ''