python3Packages.sseclient-py: fix changelog URL

The src.tag attribute already contains the "sseclient-py-" prefix,
so the changelog URL was being doubled and returned 404.

See https://github.com/NixOS/nixpkgs/issues/514132
This commit is contained in:
Jamie Magee
2026-04-27 14:45:44 -07:00
parent 8b5dea2e78
commit b0670f8a64
@@ -27,7 +27,7 @@ buildPythonPackage (finalAttrs: {
meta = {
description = "Pure-Python Server Side Events (SSE) client";
homepage = "https://github.com/mpetazzoni/sseclient";
changelog = "https://github.com/mpetazzoni/sseclient/releases/tag/sseclient-py-${finalAttrs.src.tag}";
changelog = "https://github.com/mpetazzoni/sseclient/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jamiemagee ];
};