From b4094c1bfa8663a0dcce484d003456df72471f99 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 19 Jun 2022 21:13:43 +0200 Subject: [PATCH] python310Packages.django-debug-toolbar: add pythonImportsCheck --- .../python-modules/django-debug-toolbar/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/django-debug-toolbar/default.nix b/pkgs/development/python-modules/django-debug-toolbar/default.nix index adee04eaeed3..871b8bb852e6 100644 --- a/pkgs/development/python-modules/django-debug-toolbar/default.nix +++ b/pkgs/development/python-modules/django-debug-toolbar/default.nix @@ -44,11 +44,15 @@ buildPythonPackage rec { runHook postCheck ''; + pythonImportsCheck = [ + "debug_toolbar" + ]; + meta = with lib; { description = "Configurable set of panels that display debug information about the current request/response"; homepage = "https://github.com/jazzband/django-debug-toolbar"; changelog = "https://django-debug-toolbar.readthedocs.io/en/latest/changes.html"; license = licenses.bsd3; - maintainers = With maintainers; [ yuu ]; + maintainers = with maintainers; [ yuu ]; }; }