python3Packages.django-health-check: 4.4.2 -> 4.4.3 (#537546)

This commit is contained in:
Nick Cao
2026-07-02 16:05:51 +00:00
committed by GitHub
@@ -20,16 +20,16 @@
feedparser,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "django-health-check";
version = "4.4.2";
version = "4.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "codingjoe";
repo = "django-health-check";
tag = version;
hash = "sha256-O/s++NN07B6I8YVi2HetIRY9IPtnh6Br5QzSH61NQy0=";
tag = finalAttrs.version;
hash = "sha256-brC/gMqxo6BsfMA+4u9alOtIH4js4EgdExT1LL0QXxU=";
};
build-system = [
@@ -93,11 +93,11 @@ buildPythonPackage rec {
meta = {
description = "Pluggable app that runs a full check on the deployment";
homepage = "https://github.com/codingjoe/django-health-check";
changelog = "https://github.com/codingjoe/django-health-check/releases/tag/${src.tag}";
changelog = "https://github.com/codingjoe/django-health-check/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
onny
dav-wolff
];
};
}
})