Unverified Commit 08fda638 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.django-error-report-2: init at 0.4.2 (#500942)

parents 1e37bd81 de81f453
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  django,
  fetchFromGitHub,
  lib,
  setuptools,
}:
buildPythonPackage (finalAttrs: {
  pname = "django-error-report-2";
  version = "0.4.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "matmair";
    repo = "django-error-report-2";
    tag = finalAttrs.version;
    hash = "sha256-ZCaslqgruJxM8345/jSlZGruM+27H9hvwL0wtPkUzc0=";
  };

  build-system = [ setuptools ];

  dependencies = [
    django
  ];

  # There are no tests on upstream
  doCheck = false;

  pythonImportsCheck = [ "error_report" ];

  meta = {
    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/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ kurogeek ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -4176,6 +4176,8 @@ 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 { };