python313Packages.pyleri: 1.4.3 -> 1.5.0 (#461717)

This commit is contained in:
Fabian Affolter
2025-11-14 23:43:36 +00:00
committed by GitHub
@@ -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 ];
};