Skip to content

Commit

Permalink
python313Packages.alexapy: 1.28.0 -> 1.29.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Jan 13, 2025
1 parent d554f27 commit 5fe676f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/alexapy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@

buildPythonPackage rec {
pname = "alexapy";
version = "1.28.0";
version = "1.29.5";
pyproject = true;

disabled = pythonOlder "3.10";

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
Expand All @@ -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 ];
};
}

0 comments on commit 5fe676f

Please sign in to comment.