From b3844778266841d4721ddcd51d658f03367e9a5a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 29 Dec 2025 11:28:53 +0100 Subject: [PATCH] python313Packages.pycomm3: modernize --- pkgs/development/python-modules/pycomm3/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pycomm3/default.nix b/pkgs/development/python-modules/pycomm3/default.nix index 23f6508e13e9..7fac991ad082 100644 --- a/pkgs/development/python-modules/pycomm3/default.nix +++ b/pkgs/development/python-modules/pycomm3/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, setuptools, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { @@ -12,8 +11,6 @@ buildPythonPackage rec { version = "1.2.16"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "ottowayi"; repo = "pycomm3"; @@ -37,7 +34,7 @@ buildPythonPackage rec { meta = { description = "Python Ethernet/IP library for communicating with Allen-Bradley PLCs"; homepage = "https://github.com/ottowayi/pycomm3"; - changelog = "https://github.com/ottowayi/pycomm3/releases/tag/v${version}"; + changelog = "https://github.com/ottowayi/pycomm3/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; };