python3Packages.plotnine: 0.15.2 -> 0.15.3

Diff: https://github.com/has2k1/plotnine/compare/v0.15.2...v0.15.3

Changelog: https://github.com/has2k1/plotnine/releases/tag/v0.15.3
This commit is contained in:
Gaetan Lepage
2026-01-31 21:58:16 +00:00
parent b2d7ee3731
commit 63f7956c04
@@ -21,16 +21,16 @@
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "plotnine";
version = "0.15.2";
version = "0.15.3";
pyproject = true;
src = fetchFromGitHub {
owner = "has2k1";
repo = "plotnine";
tag = "v${version}";
hash = "sha256-JjSBcPRMmxAIoQsr8ESfgcf+EWBLsq1H+q56iyD3X84=";
tag = "v${finalAttrs.version}";
hash = "sha256-nhFod9jhadKfQ8SW2RPNc8u+4gkWNDZRcnDcN5xVk54=";
};
build-system = [ setuptools-scm ];
@@ -114,8 +114,8 @@ buildPythonPackage rec {
meta = {
description = "Grammar of graphics for Python";
homepage = "https://plotnine.readthedocs.io/";
changelog = "https://github.com/has2k1/plotnine/releases/tag/${src.tag}";
changelog = "https://github.com/has2k1/plotnine/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onny ];
};
}
})