python3Packages.django-debug-toolbar: 5.0.1 -> 6.0.0

https://django-debug-toolbar.readthedocs.io/en/latest/changes.html

Changed files
+7 -4
pkgs
development
python-modules
django-debug-toolbar
+7 -4
pkgs/development/python-modules/django-debug-toolbar/default.nix
···
html5lib,
jinja2,
pygments,
-
pytest-django,
-
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "django-debug-toolbar";
-
version = "5.0.1";
+
version = "6.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "jazzband";
repo = "django-debug-toolbar";
tag = version;
-
hash = "sha256-Q0joSIFXhoVmNQ+AfESdEWUGY1xmJzr4iR6Ak54YM7c=";
+
hash = "sha256-ZNevSqEpTdk0cZeMzOpbtatEiV9SAsVUlRb9YddcAGY=";
};
+
+
postPatch = ''
+
# not actually used and we don't have django-template-partials packaged
+
sed -i "/template_partials/d" tests/settings.py
+
'';
build-system = [ hatchling ];