python3Packages.notifications-python-client: 10.0.1 -> 12.1.0 (#525374)

This commit is contained in:
Fabian Affolter
2026-05-29 05:46:30 +00:00
committed by GitHub
@@ -13,16 +13,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "notifications-python-client";
version = "10.0.1";
version = "12.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "alphagov";
repo = "notifications-python-client";
tag = version;
hash = "sha256-k4q6FS3wjolt4+qtDQlunBLmCCPgLgrhr8zgOMEX4QU=";
tag = finalAttrs.version;
hash = "sha256-jaNALtQQBxBE2ofBw9ZXC4z5VCnclAAHYvPMTBK74tY=";
};
postPatch = ''
@@ -51,8 +51,8 @@ buildPythonPackage rec {
meta = {
description = "Python client for the GOV.UK Notify API";
homepage = "https://github.com/alphagov/notifications-python-client";
changelog = "https://github.com/alphagov/notifications-python-client/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/alphagov/notifications-python-client/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})