diff --git a/pkgs/development/python-modules/tagoio-sdk/default.nix b/pkgs/development/python-modules/tagoio-sdk/default.nix index 08c1eba32bf9..d110c7971dbe 100644 --- a/pkgs/development/python-modules/tagoio-sdk/default.nix +++ b/pkgs/development/python-modules/tagoio-sdk/default.nix @@ -13,16 +13,16 @@ sseclient-py, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "tagoio-sdk"; - version = "5.1.0"; + version = "5.1.1"; pyproject = true; src = fetchFromGitHub { owner = "tago-io"; repo = "sdk-python"; - tag = "v${version}"; - hash = "sha256-jKgH78ZFb9hr7rb71mF7qIpfDzCCWLlqUJVjO88dbYc="; + tag = "v${finalAttrs.version}"; + hash = "sha256-1sPwwRgMGcT8ZCKkc6nt1XAjz4frw6guVbDN+Ydaa94="; }; pythonRelaxDeps = [ "requests" ]; @@ -48,8 +48,8 @@ buildPythonPackage rec { meta = { description = "Module for interacting with Tago.io"; homepage = "https://github.com/tago-io/sdk-python"; - changelog = "https://github.com/tago-io/sdk-python/releases/tag/${src.tag}"; + changelog = "https://github.com/tago-io/sdk-python/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})