lol

python313Packages.msmart-ng: 2025.3.1 -> 2025.3.3, home-assistant-custom-components.midea_ac: 2025.3.0 -> 2025.3.1 (#394007)

authored by

Martin Weinelt and committed by
GitHub
617494ca 250b695f

+16 -4
+14 -2
pkgs/development/python-modules/msmart-ng/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + fetchpatch2, 5 6 6 7 # build-system 7 8 setuptools, ··· 17 18 18 19 buildPythonPackage rec { 19 20 pname = "msmart-ng"; 20 - version = "2025.3.1"; 21 + version = "2025.3.3"; 21 22 pyproject = true; 22 23 23 24 src = fetchFromGitHub { 24 25 owner = "mill1000"; 25 26 repo = "midea-msmart"; 26 27 tag = version; 27 - hash = "sha256-hTYqRJn/ixseHHezfTOG0UzdQmnpn4hACijYOMtwtT8="; 28 + hash = "sha256-M8Gl6QXj0tRN7VFDhop47vINk8MeWSyCJ9bboo3j8Go="; 28 29 }; 30 + 31 + patches = [ 32 + (fetchpatch2 { 33 + # Revert <https://github.com/mill1000/midea-msmart/pull/209> until setuptools 34 + # implements support for <https://peps.python.org/pep-0639/>. 35 + name = "revert-pyproject-license-declaration-pep639-syntax.patch"; 36 + url = "https://github.com/mill1000/midea-msmart/commit/e5d6a982135e497c251095e421d3de4686f36056.patch?full_index=1"; 37 + hash = "sha256-+mxmFGZd04MZY2C5eo4k1lFoXsM8XyeJNazShnjAseE="; 38 + revert = true; 39 + }) 40 + ]; 29 41 30 42 build-system = [ 31 43 setuptools
+2 -2
pkgs/servers/home-assistant/custom-components/midea_ac/package.nix
··· 8 8 buildHomeAssistantComponent rec { 9 9 owner = "mill1000"; 10 10 domain = "midea_ac"; 11 - version = "2025.3.0"; 11 + version = "2025.3.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mill1000"; 15 15 repo = "midea-ac-py"; 16 16 tag = version; 17 - hash = "sha256-UJS9z+t+Tb/w7yRHKXJ6HoQ4uS1guM8PYl0OcLz4EJM="; 17 + hash = "sha256-oO+t0my72PwWWUAzr8blA3Q8uJyICZNcfoOHsLFL3MQ="; 18 18 }; 19 19 20 20 dependencies = [ msmart-ng ];