python3Packages.qh3: 1.9.1 -> 1.9.2 (#529748)

This commit is contained in:
dotlambda
2026-06-10 16:49:04 +00:00
committed by GitHub
@@ -12,21 +12,21 @@
stdenv,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "qh3";
version = "1.9.1";
version = "1.9.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jawah";
repo = "qh3";
tag = "v${version}";
hash = "sha256-8eH/aHEVFNKxgjHYycmzs0EiZFQXeL6uJ4NY7S1BU5w=";
tag = "v${finalAttrs.version}";
hash = "sha256-B1bCh4/KKXMbGb89XTiMaNqabeIdJ2hbDObzuNEj4NE=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-/YEci4OvRg6RR0HG+vvz4S+KBXwpLiH0gbiLaY989+4=";
inherit (finalAttrs) pname version src;
hash = "sha256-9Bx8K9UwjEN/25+rePzm7ZNZ4nkNOCnwPjlooIA+Cuk=";
};
nativeBuildInputs = [
@@ -69,10 +69,10 @@ buildPythonPackage rec {
];
meta = {
changelog = "https://github.com/jawah/qh3/blob/${src.tag}/CHANGELOG.rst";
changelog = "https://github.com/jawah/qh3/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
description = "Lightweight QUIC and HTTP/3 implementation in Python";
homepage = "https://github.com/jawah/qh3";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
})