Merge pull request #127559 from fabaff/ecoaliface

This commit is contained in:
Sandro 2021-06-20 18:39:19 +02:00 committed by GitHub
commit 2c1be9e8d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 1 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "ecoaliface";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "1hzx0r3311f952jik3pgmrg74xp5m6w9c5v6snfrb8w2m19vs6qy";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ecoaliface" ];
meta = with lib; {
description = "Python library for interacting with eCoal water boiler controllers";
homepage = "https://github.com/matkor/ecoaliface";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -202,7 +202,7 @@
"eafm" = ps: with ps; [ aioeafm ];
"ebox" = ps: with ps; [ ]; # missing inputs: pyebox
"ebusd" = ps: with ps; [ ]; # missing inputs: ebusdpy
"ecoal_boiler" = ps: with ps; [ ]; # missing inputs: ecoaliface
"ecoal_boiler" = ps: with ps; [ ecoaliface ];
"ecobee" = ps: with ps; [ python-ecobee-api ];
"econet" = ps: with ps; [ pyeconet ];
"ecovacs" = ps: with ps; [ ]; # missing inputs: sucks

View file

@ -2223,6 +2223,8 @@ in {
ecdsa = callPackage ../development/python-modules/ecdsa { };
ecoaliface = callPackage ../development/python-modules/ecoaliface { };
ecos = callPackage ../development/python-modules/ecos { };
ecpy = callPackage ../development/python-modules/ecpy { };