python3Packages.mizani: 0.14.3 -> 0.14.4

Diff: https://github.com/has2k1/mizani/compare/v0.14.3...v0.14.4

Changelog: https://github.com/has2k1/mizani/releases/tag/v0.14.4
This commit is contained in:
Gaetan Lepage
2026-01-28 15:21:21 +00:00
parent 2e04ce74b9
commit 1cb7697117
@@ -17,16 +17,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "mizani";
version = "0.14.3";
version = "0.14.4";
pyproject = true;
src = fetchFromGitHub {
owner = "has2k1";
repo = "mizani";
tag = "v${version}";
hash = "sha256-LUustvdD+8J6xu4HrvdFlVHlPGnt+h/0ZvGH7ZiVBUY=";
tag = "v${finalAttrs.version}";
hash = "sha256-aBBT0zrBFi2LW1pU83sxeRJh0B2IXa/0UNyXMfWSyAI=";
};
build-system = [ setuptools-scm ];
@@ -48,8 +48,8 @@ buildPythonPackage rec {
meta = {
description = "Scales for Python";
homepage = "https://github.com/has2k1/mizani";
changelog = "https://github.com/has2k1/mizani/releases/tag/v${version}";
changelog = "https://github.com/has2k1/mizani/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ samuela ];
};
}
})