From 18ba260eecf4a9720dd09eeb4076975f9178fa2f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Nov 2025 18:16:03 +0100 Subject: [PATCH] python313Packages.ohme: modernize --- pkgs/development/python-modules/ohme/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/ohme/default.nix b/pkgs/development/python-modules/ohme/default.nix index 05a56ffc923e..22f822a27bf7 100644 --- a/pkgs/development/python-modules/ohme/default.nix +++ b/pkgs/development/python-modules/ohme/default.nix @@ -3,7 +3,6 @@ aiohttp, buildPythonPackage, fetchFromGitHub, - pythonOlder, setuptools, }: @@ -12,8 +11,6 @@ buildPythonPackage rec { version = "1.6.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "dan-r"; repo = "ohmepy"; @@ -33,7 +30,7 @@ buildPythonPackage rec { meta = { description = "Module for interacting with the Ohme API"; homepage = "https://github.com/dan-r/ohmepy"; - changelog = "https://github.com/dan-r/ohmepy/releases/tag/v${version}"; + changelog = "https://github.com/dan-r/ohmepy/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; };