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, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
pythonOlder,
requests, requests,
setuptools, setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-ecobee-api"; pname = "python-ecobee-api";
version = "0.3.1"; version = "0.3.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nkgilley"; owner = "nkgilley";
repo = "python-ecobee-api"; repo = "python-ecobee-api";
tag = version; tag = version;
hash = "sha256-7AFt5WHtAr1DRG1kjmUwYMHVwbonltNvzgewDuFa6Tk="; hash = "sha256-6uZc022C3EgEgsPGD302qAtFqubwQSETQr3SQSYXeb8=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];