python3Packages.django-error-report-2: drop

This commit is contained in:
Robert Schütz
2026-03-15 21:01:42 -07:00
parent 760db6bcb8
commit 91fbb32e1d
2 changed files with 0 additions and 41 deletions
@@ -1,39 +0,0 @@
{
buildPythonPackage,
django,
fetchFromGitHub,
lib,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "django-error-report-2";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "matmair";
repo = "django-error-report-2";
tag = version;
hash = "sha256-ZCaslqgruJxM8345/jSlZGruM+27H9hvwL0wtPkUzc0=";
};
disabled = pythonOlder "3.6";
dependencies = [
django
];
build-system = [ setuptools ];
# There is no tests on upstream
doCheck = false;
pythonImportsCheck = [ "error_report" ];
meta = with lib; {
description = "Log/View Django server errors.";
homepage = "https://github.com/matmair/django-error-report-2";
changelog = "https://github.com/matmair/django-error-report-2/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ kurogeek ];
};
}
-2
View File
@@ -4174,8 +4174,6 @@ self: super: with self; {
django-environ = callPackage ../development/python-modules/django-environ { };
django-error-report-2 = callPackage ../development/python-modules/django-error-report-2 { };
django-extensions = callPackage ../development/python-modules/django-extensions { };
django-filer = callPackage ../development/python-modules/django-filer { };