python3Packages.python-ecobee-api: 0.3.1 -> 0.3.2

Diff: https://github.com/nkgilley/python-ecobee-api/compare/0.3.1...0.3.2

Changelog: https://github.com/nkgilley/python-ecobee-api/releases/tag/0.3.2
This commit is contained in:
Robert Schütz
2025-10-29 19:01:03 -07:00
parent b7a7e0b3db
commit e2d9e094d2

View File

@@ -2,23 +2,20 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "python-ecobee-api";
version = "0.3.1";
version = "0.3.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "nkgilley";
repo = "python-ecobee-api";
tag = version;
hash = "sha256-7AFt5WHtAr1DRG1kjmUwYMHVwbonltNvzgewDuFa6Tk=";
hash = "sha256-6uZc022C3EgEgsPGD302qAtFqubwQSETQr3SQSYXeb8=";
};
build-system = [ setuptools ];