10 buildPythonPackage rec {
11 pname = "django-tables2";
13 format = "setuptools";
14 disabled = pythonOlder "3.6";
16 src = fetchFromGitHub {
20 hash = "sha256-n8qvsm/i+2VclFc00jQGO0Z4l6Ke8qZ03EYuEQcPuVQ=";
23 propagatedBuildInputs = [
28 pythonImportsCheck = [
29 # Requested setting DJANGO_TABLES2_TEMPLATE, but settings are not configured.
32 doCheck = false; # needs django-boostrap{3,4} packages
34 # Leave this in! Discovering how to run tests is annoying in Django apps
36 ${python.interpreter} example/manage.py test
40 description = "Django app for creating HTML tables";
41 homepage = "https://github.com/jieter/django-tables2";
42 license = licenses.bsd2;
43 maintainers = with maintainers; [ hexa ];