Merge pull request #302128 from r-ryantm/auto-update/python312Packages.yolink-api

python312Packages.yolink-api: 0.4.1 -> 0.4.2
This commit is contained in:
Fabian Affolter 2024-04-06 20:32:30 +02:00 committed by GitHub
commit f54a3332c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 17 deletions

View File

@ -1,17 +1,18 @@
{ lib
, aiohttp
, aiomqtt
, buildPythonPackage
, fetchFromGitHub
, pydantic
, pythonOlder
, setuptools
, tenacity
{
lib,
aiohttp,
aiomqtt,
buildPythonPackage,
fetchFromGitHub,
pydantic,
pythonOlder,
setuptools,
tenacity,
}:
buildPythonPackage rec {
pname = "yolink-api";
version = "0.4.1";
version = "0.4.2";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,12 +21,10 @@ buildPythonPackage rec {
owner = "YoSmart-Inc";
repo = "yolink-api";
rev = "refs/tags/v${version}";
hash = "sha256-YDfwF9ldL43yrhz1TibTatkZIccYTpNODdjqBkzeh1s=";
hash = "sha256-De3uMrLAz8LdX2pU5pn+6W6UvB+M9fSv80RSjgleo3M=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
@ -37,9 +36,7 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"yolink"
];
pythonImportsCheck = [ "yolink" ];
meta = with lib; {
description = "Library to interface with Yolink";