python313Packages.meross-iot: 0.4.7.5 -> 0.4.9.0 (#391060)

authored by dotlambda and committed by GitHub abb72897 62f6cde5

+3 -10
+3 -10
pkgs/development/python-modules/meross-iot/default.nix
··· 4 buildPythonPackage, 5 fetchFromGitHub, 6 paho-mqtt, 7 - pythonOlder, 8 pycryptodomex, 9 requests, 10 - retrying, 11 setuptools, 12 }: 13 14 buildPythonPackage rec { 15 pname = "meross-iot"; 16 - version = "0.4.7.5"; 17 pyproject = true; 18 19 - disabled = pythonOlder "3.7"; 20 - 21 src = fetchFromGitHub { 22 owner = "albertogeniola"; 23 repo = "MerossIot"; 24 tag = version; 25 - hash = "sha256-CEBZVbUkRMWw95imL1k3q7Z3Nkyzwleh5C/s0XxfhfQ="; 26 }; 27 28 build-system = [ setuptools ]; ··· 32 paho-mqtt 33 pycryptodomex 34 requests 35 - retrying 36 - ]; 37 38 # Test require network access 39 doCheck = false; ··· 41 pythonImportsCheck = [ "meross_iot" ]; 42 43 meta = with lib; { 44 - # https://github.com/albertogeniola/MerossIot/pull/413 45 - broken = lib.versionAtLeast paho-mqtt.version "2"; 46 description = "Python library to interact with Meross devices"; 47 homepage = "https://github.com/albertogeniola/MerossIot"; 48 changelog = "https://github.com/albertogeniola/MerossIot/releases/tag/${version}";
··· 4 buildPythonPackage, 5 fetchFromGitHub, 6 paho-mqtt, 7 pycryptodomex, 8 requests, 9 setuptools, 10 }: 11 12 buildPythonPackage rec { 13 pname = "meross-iot"; 14 + version = "0.4.9.0"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "albertogeniola"; 19 repo = "MerossIot"; 20 tag = version; 21 + hash = "sha256-EBsWEsP7SzhDbMayD2903T5Q2WDJKboVtyYY4xP8AOE="; 22 }; 23 24 build-system = [ setuptools ]; ··· 28 paho-mqtt 29 pycryptodomex 30 requests 31 + ] ++ aiohttp.optional-dependencies.speedups; 32 33 # Test require network access 34 doCheck = false; ··· 36 pythonImportsCheck = [ "meross_iot" ]; 37 38 meta = with lib; { 39 description = "Python library to interact with Meross devices"; 40 homepage = "https://github.com/albertogeniola/MerossIot"; 41 changelog = "https://github.com/albertogeniola/MerossIot/releases/tag/${version}";