python311Packages.aiosomecomfort: refactor
This commit is contained in:
parent
0ebedb7044
commit
57b5c5c861
1 changed files with 9 additions and 3 deletions
|
@ -1,15 +1,16 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, aiohttp
|
||||
, prettytable
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiosomecomfort";
|
||||
version = "0.0.22";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
|
@ -20,6 +21,10 @@ buildPythonPackage rec {
|
|||
hash = "sha256-d4pyt9+sBPNo/PL05HQ4sjyjubMtTZI9WUGRU1B/dH0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
prettytable
|
||||
|
@ -29,7 +34,8 @@ buildPythonPackage rec {
|
|||
"aiosomecomfort"
|
||||
];
|
||||
|
||||
doCheck = false; # tests only run on windows, due to WindowsSelectorEventLoopPolicy
|
||||
# Tests only run on Windows, due to WindowsSelectorEventLoopPolicy
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "AsyicIO client for US models of Honeywell Thermostats";
|
||||
|
|
Loading…
Reference in a new issue