esphome: remove version pinning

This commit is contained in:
Jonathan Ringer 2020-04-09 11:00:22 -07:00 committed by Jon
parent 5dc0610564
commit 664d1b2440

View File

@ -33,11 +33,9 @@ in python.pkgs.buildPythonApplication rec {
protobuf protobuf
]; ];
# remove all version pinning (E.g tornado==5.1.1 -> tornado)
postPatch = '' postPatch = ''
substituteInPlace setup.py \ sed -i -e "s/==[0-9.]*//" setup.py
--replace "protobuf==3.10.0" "protobuf~=3.10" \
--replace "paho-mqtt==1.4.0" "paho-mqtt~=1.4" \
--replace "tornado==5.1.1" "tornado~=5.1"
''; '';
makeWrapperArgs = [ makeWrapperArgs = [
@ -49,11 +47,14 @@ in python.pkgs.buildPythonApplication rec {
]; ];
# Platformio will try to access the network # Platformio will try to access the network
doCheck = false; # Instead, run the executable
checkPhase = ''
$out/bin/esphome --help > /dev/null
'';
meta = with lib; { meta = with lib; {
description = "Make creating custom firmwares for ESP32/ESP8266 super easy"; description = "Make creating custom firmwares for ESP32/ESP8266 super easy";
homepage = https://esphome.io/; homepage = "https://esphome.io/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ dotlambda globin ]; maintainers = with maintainers; [ dotlambda globin ];
}; };