lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.alexapy: 1.28.0 -> 1.29.5

wxt 5fe676f6 d554f275

+8 -8
+8 -8
pkgs/development/python-modules/alexapy/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "alexapy"; 22 - version = "1.28.0"; 22 + version = "1.29.5"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.10"; ··· 27 27 src = fetchFromGitLab { 28 28 owner = "keatontaylor"; 29 29 repo = "alexapy"; 30 - rev = "refs/tags/v${version}"; 31 - hash = "sha256-sRTK3qaIiYxz9Z+LT2pFjqKXBHyr3EkSD4dtc+KXFQw="; 30 + tag = "v${version}"; 31 + hash = "sha256-46dRjVm3d1/bMlJCO6Dy/+cOYsPNruUADshrdrObw5Q="; 32 32 }; 33 33 34 34 pythonRelaxDeps = [ "aiofiles" ]; 35 35 36 - nativeBuildInputs = [ 36 + build-system = [ 37 37 poetry-core 38 38 ]; 39 39 40 - propagatedBuildInputs = [ 40 + dependencies = [ 41 41 aiofiles 42 42 aiohttp 43 43 authcaptureproxy ··· 56 56 # Module has no tests (only a websocket test which seems unrelated to the module) 57 57 doCheck = false; 58 58 59 - meta = with lib; { 59 + meta = { 60 60 description = "Python Package for controlling Alexa devices (echo dot, etc) programmatically"; 61 61 homepage = "https://gitlab.com/keatontaylor/alexapy"; 62 62 changelog = "https://gitlab.com/keatontaylor/alexapy/-/blob/v${version}/CHANGELOG.md"; 63 - license = licenses.asl20; 64 - maintainers = with maintainers; [ fab ]; 63 + license = lib.licenses.asl20; 64 + maintainers = with lib.maintainers; [ fab ]; 65 65 }; 66 66 }