From 67190d47f4346391a111b61d0704850448ecf342 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 14 Nov 2025 22:49:44 +0100 Subject: [PATCH] python313Packages.pyleri: 1.4.3 -> 1.5.0 Changelog: https://github.com/cesbit/pyleri/releases/tag/v1.5.0 --- pkgs/development/python-modules/pyleri/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pyleri/default.nix b/pkgs/development/python-modules/pyleri/default.nix index 75e798a8ed4e..f1f5368be5b2 100644 --- a/pkgs/development/python-modules/pyleri/default.nix +++ b/pkgs/development/python-modules/pyleri/default.nix @@ -2,22 +2,19 @@ lib, buildPythonPackage, fetchFromGitHub, - pythonOlder, unittestCheckHook, setuptools, }: buildPythonPackage rec { pname = "pyleri"; - version = "1.4.3"; + version = "1.5.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "cesbit"; repo = "pyleri"; - tag = version; + tag = "v${version}"; hash = "sha256-4t+6wtYzJbmL0TB/OXr89uZ2s8DeGlUdWwHd4YPsCW0="; }; @@ -30,7 +27,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to parse SiriDB"; homepage = "https://github.com/cesbit/pyleri"; - changelog = "https://github.com/cesbit/pyleri/releases/tag/${version}"; + changelog = "https://github.com/cesbit/pyleri/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };