From 5fe676f6a03c4c02a19944055cf18ca524882f89 Mon Sep 17 00:00:00 2001 From: wxt <3264117476@qq.com> Date: Mon, 13 Jan 2025 20:53:51 +0800 Subject: [PATCH] python313Packages.alexapy: 1.28.0 -> 1.29.5 --- .../python-modules/alexapy/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/alexapy/default.nix b/pkgs/development/python-modules/alexapy/default.nix index 7ff595cb8b33f..dfe18239ee888 100644 --- a/pkgs/development/python-modules/alexapy/default.nix +++ b/pkgs/development/python-modules/alexapy/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "alexapy"; - version = "1.28.0"; + version = "1.29.5"; pyproject = true; disabled = pythonOlder "3.10"; @@ -27,17 +27,17 @@ buildPythonPackage rec { src = fetchFromGitLab { owner = "keatontaylor"; repo = "alexapy"; - rev = "refs/tags/v${version}"; - hash = "sha256-sRTK3qaIiYxz9Z+LT2pFjqKXBHyr3EkSD4dtc+KXFQw="; + tag = "v${version}"; + hash = "sha256-46dRjVm3d1/bMlJCO6Dy/+cOYsPNruUADshrdrObw5Q="; }; pythonRelaxDeps = [ "aiofiles" ]; - nativeBuildInputs = [ + build-system = [ poetry-core ]; - propagatedBuildInputs = [ + dependencies = [ aiofiles aiohttp authcaptureproxy @@ -56,11 +56,11 @@ buildPythonPackage rec { # Module has no tests (only a websocket test which seems unrelated to the module) doCheck = false; - meta = with lib; { + meta = { description = "Python Package for controlling Alexa devices (echo dot, etc) programmatically"; homepage = "https://gitlab.com/keatontaylor/alexapy"; changelog = "https://gitlab.com/keatontaylor/alexapy/-/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; }