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

python310Packages.django-debug-toolbar: 3.8.1 -> 4.1
This commit is contained in:
Weijia Wang 2023-08-13 15:47:45 +02:00 committed by GitHub
commit b129f88a2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,16 +12,16 @@
buildPythonPackage rec {
pname = "django-debug-toolbar";
version = "3.8.1";
version = "4.1";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jazzband";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-GlEw25wem8iwwm3rYLk6TFEAIzC1pYjpSHdAkHwtFcE=";
hash = "sha256-UgnWA2JicL6xsnIF5WaWCRIdXEJbwiE89tqiueczEfE=";
};
nativeBuildInputs = [
@ -59,5 +59,5 @@ buildPythonPackage rec {
changelog = "https://django-debug-toolbar.readthedocs.io/en/latest/changes.html";
license = licenses.bsd3;
maintainers = with maintainers; [ yuu ];
};
};
}