Merge pull request #306706 from r-ryantm/auto-update/python311Packages.meross-iot

python311Packages.meross-iot: 0.4.6.2 -> 0.4.7.0
This commit is contained in:
Fabian Affolter 2024-04-25 11:15:27 +02:00 committed by GitHub
commit d39bac1e3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 19 deletions

View File

@ -1,18 +1,19 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, requests
, retrying
, setuptools
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
paho-mqtt,
pytestCheckHook,
pythonOlder,
requests,
retrying,
setuptools,
}:
buildPythonPackage rec {
pname = "meross-iot";
version = "0.4.6.2";
version = "0.4.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -21,14 +22,12 @@ buildPythonPackage rec {
owner = "albertogeniola";
repo = "MerossIot";
rev = "refs/tags/${version}";
hash = "sha256-fekiN4AHb/RNEMibQqV7By0FAyTcERZmmi0+qCG4NzQ=";
hash = "sha256-Zf392XMhSrCn5KM761YXzinD46Et4itva7USsFNRgPI=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
aiohttp
paho-mqtt
requests
@ -38,9 +37,7 @@ buildPythonPackage rec {
# Test require network access
doCheck = false;
pythonImportsCheck = [
"meross_iot"
];
pythonImportsCheck = [ "meross_iot" ];
meta = with lib; {
description = "Python library to interact with Meross devices";