e890b7efb2
Diff: https://github.com/mkmer/AIOSomecomfort/compare/refs/tags/0.0.14...0.0.15 Changelog: https://github.com/mkmer/AIOSomecomfort/releases/tag/0.0.15
41 lines
930 B
Nix
41 lines
930 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, aiohttp
|
|
, prettytable
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiosomecomfort";
|
|
version = "0.0.15";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkmer";
|
|
repo = "AIOSomecomfort";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-G7A5XXAElPFkuRM5bEcKqqn14tjJLn2lkYyqBtm5giM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
prettytable
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"aiosomecomfort"
|
|
];
|
|
|
|
doCheck = false; # tests only run on windows, due to WindowsSelectorEventLoopPolicy
|
|
|
|
meta = {
|
|
description = "AsyicIO client for US models of Honeywell Thermostats";
|
|
homepage = "https://github.com/mkmer/AIOSomecomfort";
|
|
changelog = "https://github.com/mkmer/AIOSomecomfort/releases/tag/${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|