forked from mirrors/nixpkgs
esphome: 1.12.2 -> 1.13.6
This commit is contained in:
parent
8627cc58ba
commit
7ab21ef4eb
|
@ -1,4 +1,4 @@
|
|||
{ lib, python3, platformio, esptool, git, protobuf3_7 }:
|
||||
{ lib, python3, platformio, esptool, git, protobuf3_7, fetchpatch }:
|
||||
|
||||
let
|
||||
python = python3.override {
|
||||
|
@ -18,11 +18,17 @@ let
|
|||
|
||||
in python.pkgs.buildPythonApplication rec {
|
||||
pname = "esphome";
|
||||
version = "1.12.2";
|
||||
version = "1.13.6";
|
||||
|
||||
src = python.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "935fc3d0f05b2f5911c29f60c9b5538bed584a31455b492944007d8b1524462c";
|
||||
sha256 = "53148fc43c6cc6736cb7aa4cc1189caa305812061f55289ff916f8bd731ac623";
|
||||
};
|
||||
|
||||
patches = fetchpatch {
|
||||
url = https://github.com/esphome/esphome/pull/694.patch;
|
||||
includes = [ "esphome/voluptuous_schema.py" ];
|
||||
sha256 = "0i2v1d6mcgc94i9rkaqmls7iyfbaisdji41sfc7bh7cf2j824im9";
|
||||
};
|
||||
|
||||
ESPHOME_USE_SUBPROCESS = "";
|
||||
|
|
Loading…
Reference in a new issue