python3Packages.jaraco-test: 5.6.0 -> 5.7.0 (#542346)

This commit is contained in:
dotlambda
2026-07-17 18:07:42 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
pytest8_3CheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jaraco-test";
version = "5.6.0";
version = "5.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.test";
tag = "v${version}";
hash = "sha256-Ym0r92xCh+DNpFexqPlRVgcDGYNvnaJHEs5/RMaUr+s=";
tag = "v${finalAttrs.version}";
hash = "sha256-c8N4Q4zNZolhJ9osBOaorWXNINnuA5PV0y5DHZISHaY=";
};
postPatch = ''
@@ -41,8 +41,8 @@ buildPythonPackage rec {
meta = {
description = "Testing support by jaraco";
homepage = "https://github.com/jaraco/jaraco.test";
changelog = "https://github.com/jaraco/jaraco.test/blob/${src.tag}/NEWS.rst";
changelog = "https://github.com/jaraco/jaraco.test/blob/${finalAttrs.src.tag}/NEWS.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
})