diff --git a/pkgs/development/python-modules/alexapy/default.nix b/pkgs/development/python-modules/alexapy/default.nix index 7ff595cb8b33..dfe18239ee88 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 ]; }; }