From 23dc60f80fa689cd790bb0d0c0fcedd351ffe9ec Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 26 Oct 2025 06:33:53 +0000 Subject: [PATCH 1/2] python3Packages.ttn-client: 1.2.1 -> 1.2.2 --- pkgs/development/python-modules/ttn-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ttn-client/default.nix b/pkgs/development/python-modules/ttn-client/default.nix index a6aecc553194..52776272cd22 100644 --- a/pkgs/development/python-modules/ttn-client/default.nix +++ b/pkgs/development/python-modules/ttn-client/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "ttn-client"; - version = "1.2.1"; + version = "1.2.2"; pyproject = true; disabled = pythonOlder "3.11"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "angelnu"; repo = "thethingsnetwork_python_client"; tag = "v${version}"; - hash = "sha256-dWEXoqW4JyYeLFLS3J4CaRJ45wjdVf8wrtMGCKgBds8="; + hash = "sha256-B3AN0VqMhQoqqPjUf/JTWYdyVQVXt+QsBbqsooDsuDE="; }; build-system = [ hatchling ]; From 2f34e223fddde77ec2f41b11ddd1ce92ab0bd223 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 27 Oct 2025 10:36:54 +0100 Subject: [PATCH 2/2] python313Packages.ttn-client: modernize Updated changelog URL to use dynamic tag reference. --- pkgs/development/python-modules/ttn-client/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/ttn-client/default.nix b/pkgs/development/python-modules/ttn-client/default.nix index 52776272cd22..c2628967ccc5 100644 --- a/pkgs/development/python-modules/ttn-client/default.nix +++ b/pkgs/development/python-modules/ttn-client/default.nix @@ -6,7 +6,6 @@ hatchling, pytest-asyncio, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { @@ -14,8 +13,6 @@ buildPythonPackage rec { version = "1.2.2"; pyproject = true; - disabled = pythonOlder "3.11"; - src = fetchFromGitHub { owner = "angelnu"; repo = "thethingsnetwork_python_client"; @@ -42,7 +39,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to fetch/receive and parse uplink messages from The Thinks Network"; homepage = "https://github.com/angelnu/thethingsnetwork_python_client"; - changelog = "https://github.com/angelnu/thethingsnetwork_python_client/releases/tag/v${version}"; + changelog = "https://github.com/angelnu/thethingsnetwork_python_client/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };