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:
@@ -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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user