1 { lib, fetchFromGitHub, buildPythonPackage, django, pytest, pytest-django }:
3 buildPythonPackage rec {
4 pname = "django-logentry-admin";
7 src = fetchFromGitHub {
11 sha256 = "1bndxgvisw8kk52zfdifvly6dl4833wqilxf77pg473172yaf5gq";
14 checkInputs = [ pytest pytest-django ];
16 rm -r logentry_admin __init__.py
20 propagatedBuildInputs = [ django ];
23 description = "Show all LogEntry objects in the Django admin site";
24 homepage = "https://github.com/yprez/django-logentry-admin";
25 license = licenses.isc;
26 maintainers = with maintainers; [ mrmebelman ];