My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-tables2/default.nix

45 lines
983 B

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, django
, tablib
, python
}:
buildPythonPackage rec {
pname = "django-tables2";
version = "2.4.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jieter";
repo = pname;
rev = "v${version}";
sha256 = "04vvgf18diwp0mgp14b71a0dxhgrcslv1ljybi300gvzvzjnp3qv";
};
propagatedBuildInputs = [
django
tablib
];
pythonImportsCheck = [
# Requested setting DJANGO_TABLES2_TEMPLATE, but settings are not configured.
];
doCheck = false; # needs django-boostrap{3,4} packages
# Leave this in! Discovering how to run tests is annoying in Django apps
checkPhase = ''
${python.interpreter} example/manage.py test
'';
meta = with lib; {
description = "Django app for creating HTML tables";
homepage = "https://github.com/jieter/django-tables2";
license = licenses.bsd2;
maintainers = with maintainers; [ hexa ];
};
}