python313Packages.django-bootstrap5: 25.1 -> 25.2

Diff: https://github.com/zostera/django-bootstrap5/compare/v25.1...v25.2

Changelog: https://github.com/zostera/django-bootstrap5/blob/v25.2/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2025-09-21 09:29:30 +02:00
parent 81251f5702
commit de1e5f1eb3
@@ -4,29 +4,26 @@
buildPythonPackage,
django,
fetchFromGitHub,
hatchling,
jinja2,
pillow,
pytest-django,
pytestCheckHook,
pythonOlder,
uv-build,
}:
buildPythonPackage rec {
pname = "django-bootstrap5";
version = "25.1";
version = "25.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "zostera";
repo = "django-bootstrap5";
rev = "v${version}";
hash = "sha256-5VYw9Kq33/YFW9mFzkFzhrxavfx6r/CtC1SJhZbanhg=";
tag = "v${version}";
hash = "sha256-aqP2IkAkZsw5vbQxhiy9L3giSgb0seub9gsxPTajiXo=";
};
build-system = [ hatchling ];
build-system = [ uv-build ];
dependencies = [ django ];
@@ -57,7 +54,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Bootstrap 5 integration with Django";
homepage = "https://github.com/zostera/django-bootstrap5";
changelog = "https://github.com/zostera/django-bootstrap5/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/zostera/django-bootstrap5/blob/${src.tag}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ netali ];
};