Merge pull request #178240 from r-ryantm/auto-update/python310Packages.django-debug-toolbar

python310Packages.django-debug-toolbar: 3.2.4 -> 3.4
main
Fabian Affolter 2 years ago committed by GitHub
commit 806a815b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      pkgs/development/python-modules/django-debug-toolbar/default.nix

@ -11,14 +11,16 @@
buildPythonPackage rec {
pname = "django-debug-toolbar";
version = "3.2.4";
disabled = pythonOlder "3.6";
version = "3.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jazzband";
repo = pname;
rev = version;
sha256 = "1008yzxxs1cp1wc0xcc9xskc3f7naxc4srv1sikiank1bc3479ha";
rev = "refs/tags/${version}";
hash = "sha256-tXQZcQvdGEtcIAtER1s2HSVkGHW0sdrnC+i01+RuSXg=";
};
propagatedBuildInputs = [
@ -42,11 +44,15 @@ buildPythonPackage rec {
runHook postCheck
'';
meta = {
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";
maintainers = with lib.maintainers; [ yuu ];
license = lib.licenses.bsd3;
};
license = licenses.bsd3;
maintainers = with maintainers; [ yuu ];
};
}

Loading…
Cancel
Save