python3Packages.http-message-signatures: 1.0.1 -> 2.0.0 (#478281)

This commit is contained in:
Fabian Affolter
2026-01-09 09:03:24 +00:00
committed by GitHub
@@ -3,22 +3,22 @@
buildPythonPackage,
cryptography,
fetchFromGitHub,
pytestCheckHook,
hatchling,
hatch-vcs,
hatchling,
pytestCheckHook,
requests,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "http-message-signatures";
version = "1.0.1";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pyauth";
repo = "http-message-signatures";
tag = "v${version}";
hash = "sha256-c5zwH28FFbEmLfL4nBBE2S1YEbwicoJo3UAYn/0zXEM=";
tag = "v${finalAttrs.version}";
hash = "sha256-uHsH/kYph50cpLcy4lnu466odexUVvQAYk0ydgtcsM8=";
};
build-system = [
@@ -26,9 +26,7 @@ buildPythonPackage rec {
hatch-vcs
];
dependencies = [
cryptography
];
dependencies = [ cryptography ];
nativeCheckInputs = [
pytestCheckHook
@@ -42,7 +40,8 @@ buildPythonPackage rec {
meta = {
description = "Requests authentication module for HTTP Signature";
homepage = "https://github.com/pyauth/http-message-signatures";
changelog = "https://github.com/pyauth/http-message-signatures/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})