python3Packages.oelint-data: 1.3.0 -> 1.3.3 (#478719)

This commit is contained in:
kirillrdy
2026-01-10 22:20:11 +00:00
committed by GitHub
@@ -6,16 +6,16 @@
oelint-parser,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "oelint-data";
version = "1.3.0";
version = "1.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "priv-kweihmann";
repo = "oelint-data";
tag = version;
hash = "sha256-+QavuUIj6aKaxIp0NPj0doKV/+SL7bh5LaH1TLe/LZ4=";
tag = finalAttrs.version;
hash = "sha256-5eEhr2Jt6Ucco1/3zMGSq5SNcco8FMdJn583qBJmxk0=";
};
build-system = [
@@ -34,8 +34,8 @@ buildPythonPackage rec {
meta = {
description = "Data for oelint-adv";
homepage = "https://github.com/priv-kweihmann/oelint-data";
changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${src.tag}";
changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})