From 5eb932f8a119c2c27af30d7a81267d03fb8ef291 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Feb 2025 21:12:38 +0100 Subject: [PATCH] python313Packages.yeelight: 0.7.14 -> 0.7.16 Diff: https://gitlab.com/stavros/python-yeelight/-/compare/refs/tags/v0.7.14...v0.7.16 Changelog: https://gitlab.com/stavros/python-yeelight/-/blob/v0.7.16/CHANGELOG.md --- .../development/python-modules/yeelight/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/yeelight/default.nix b/pkgs/development/python-modules/yeelight/default.nix index ba9faf0217b2..8b08b68fb29c 100644 --- a/pkgs/development/python-modules/yeelight/default.nix +++ b/pkgs/development/python-modules/yeelight/default.nix @@ -3,7 +3,6 @@ async-timeout, buildPythonPackage, fetchFromGitLab, - fetchpatch2, flit-core, ifaddr, pytestCheckHook, @@ -12,7 +11,7 @@ buildPythonPackage rec { pname = "yeelight"; - version = "0.7.14"; + version = "0.7.16"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,17 +20,9 @@ buildPythonPackage rec { owner = "stavros"; repo = "python-yeelight"; rev = "refs/tags/v${version}"; - hash = "sha256-BnMvRs95rsmoBa/5bp0zShgU1BBHtZzyADjbH0y1d/o="; + hash = "sha256-WLEXTDVcSpGCmfEI31cQXGf9+4EIUCkcaeaj25f4ERU="; }; - patches = [ - (fetchpatch2 { - name = "remove-future-dependency.patch"; - url = "https://gitlab.com/stavros/python-yeelight/-/commit/654f4f34e0246e65d8db02a107e2ab706de4806d.patch"; - hash = "sha256-olKpYCzIq/E7zup40Kwzwgk5iOtCubLHo9uQDOhaByQ="; - }) - ]; - build-system = [ flit-core ]; dependencies = [ ifaddr ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];