Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 95e3e3e0a848
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b27034dfdb91
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 19, 2020

  1. Copy the full SHA
    b27034d View commit details
Showing with 8 additions and 9 deletions.
  1. +8 −9 pkgs/servers/home-assistant/esphome.nix
17 changes: 8 additions & 9 deletions pkgs/servers/home-assistant/esphome.nix
Original file line number Diff line number Diff line change
@@ -3,27 +3,26 @@
let
python = python3.override {
packageOverrides = self: super: {
tornado = super.tornado.overridePythonAttrs (oldAttrs: rec {
version = "5.1.1";
protobuf = super.protobuf.override {
protobuf = protobuf3_10;
};
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
version = "5.1.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409";
sha256 = "1r5faspz73477hlbjgilw05xsms0glmsa371yqdd26znqsvg1b81";
};
});
protobuf = super.protobuf.override {
protobuf = protobuf3_10;
};

};
};

in python.pkgs.buildPythonApplication rec {
pname = "esphome";
version = "1.14.1";
version = "1.14.3";

src = python.pkgs.fetchPypi {
inherit pname version;
sha256 = "1hw1q2fck9429077w207rk65a1krzyi6qya5pzjkpw4av5s0v0g3";
sha256 = "0xnsl000c5a2li9qw9anrzzq437qn1n4hcfc24i4rfq37awzmig7";
};

ESPHOME_USE_SUBPROCESS = "";