python313Packages.jh2: 5.0.10 -> 5.0.11 (#507082)

This commit is contained in:
Fabian Affolter
2026-04-06 15:50:35 +00:00
committed by GitHub
@@ -9,22 +9,22 @@
rustPlatform,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jh2";
version = "5.0.10";
version = "5.0.11";
pyproject = true;
src = fetchFromGitHub {
owner = "jawah";
repo = "h2";
tag = "v${version}";
hash = "sha256-zytQ6UFNeIaF7cftp7C/RnXhuRbQxc1jhwVmFwUDF1Y=";
tag = "v${finalAttrs.version}";
hash = "sha256-k69U8O0c7z1TJASOWcndZA/LYTsX7nVfelhaS6FlN5g=";
fetchSubmodules = true;
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-W2BfuOhYL56gPd+j9YuJ7Ee3e+jT5m47h8qXihoMu1M=";
inherit (finalAttrs) pname version src;
hash = "sha256-ELZD3CIAv70DGoCgdK8T2yVLtib9ylSvoZPFOge6nIQ=";
};
build-system = [
@@ -44,11 +44,11 @@ buildPythonPackage rec {
meta = {
description = "HTTP/2 State-Machine based protocol implementation";
homepage = "https://github.com/jawah/h2";
changelog = "https://github.com/jawah/h2/blob/${src.rev}/CHANGELOG.rst";
changelog = "https://github.com/jawah/h2/blob/${finalAttrs.src.rev}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
fab
techknowlogick
];
};
}
})