Merge pull request #127271 from dotlambda/python-ecobee-api-init
This commit is contained in:
commit
34d8d085ca
4 changed files with 35 additions and 1 deletions
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-ecobee-api";
|
||||||
|
version = "0.2.13";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "7c39f5aac854a2fb8fb33f41b351769a92ff784bc6112e7a5c1b9e1949a0fefe";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests implemented
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pyecobee" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python API for talking to Ecobee thermostats";
|
||||||
|
homepage = "https://github.com/nkgilley/python-ecobee-api";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -203,7 +203,7 @@
|
||||||
"ebox" = ps: with ps; [ ]; # missing inputs: pyebox
|
"ebox" = ps: with ps; [ ]; # missing inputs: pyebox
|
||||||
"ebusd" = ps: with ps; [ ]; # missing inputs: ebusdpy
|
"ebusd" = ps: with ps; [ ]; # missing inputs: ebusdpy
|
||||||
"ecoal_boiler" = ps: with ps; [ ]; # missing inputs: ecoaliface
|
"ecoal_boiler" = ps: with ps; [ ]; # missing inputs: ecoaliface
|
||||||
"ecobee" = ps: with ps; [ ]; # missing inputs: python-ecobee-api
|
"ecobee" = ps: with ps; [ python-ecobee-api ];
|
||||||
"econet" = ps: with ps; [ pyeconet ];
|
"econet" = ps: with ps; [ pyeconet ];
|
||||||
"ecovacs" = ps: with ps; [ ]; # missing inputs: sucks
|
"ecovacs" = ps: with ps; [ ]; # missing inputs: sucks
|
||||||
"eddystone_temperature" = ps: with ps; [ construct ]; # missing inputs: beacontools[scan]
|
"eddystone_temperature" = ps: with ps; [ construct ]; # missing inputs: beacontools[scan]
|
||||||
|
|
|
@ -350,6 +350,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||||
"dunehd"
|
"dunehd"
|
||||||
"dyson"
|
"dyson"
|
||||||
"eafm"
|
"eafm"
|
||||||
|
"ecobee"
|
||||||
"econet"
|
"econet"
|
||||||
"efergy"
|
"efergy"
|
||||||
"emonitor"
|
"emonitor"
|
||||||
|
|
|
@ -5268,6 +5268,8 @@ in {
|
||||||
|
|
||||||
python-csxcad = callPackage ../development/python-modules/python-csxcad { };
|
python-csxcad = callPackage ../development/python-modules/python-csxcad { };
|
||||||
|
|
||||||
|
python-ecobee-api = callPackage ../development/python-modules/python-ecobee-api { };
|
||||||
|
|
||||||
python-openems = callPackage ../development/python-modules/python-openems { };
|
python-openems = callPackage ../development/python-modules/python-openems { };
|
||||||
|
|
||||||
python-openzwave-mqtt = callPackage ../development/python-modules/python-openzwave-mqtt { };
|
python-openzwave-mqtt = callPackage ../development/python-modules/python-openzwave-mqtt { };
|
||||||
|
|
Loading…
Reference in a new issue