1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 django-classy-tags,
6 pytestCheckHook,
7 pytest-django,
8}:
9
10buildPythonPackage rec {
11 pname = "django-sekizai";
12 version = "4.1.0";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-Kso2y64LXAzv7ZVlQW7EQjNXZ/sxRb/xHlhiL8ZTza0=";
18 };
19
20 propagatedBuildInputs = [ django-classy-tags ];
21
22 checkInputs = [
23 pytestCheckHook
24 pytest-django
25 ];
26
27 pythonImportsCheck = [ "sekizai" ];
28
29 DJANGO_SETTINGS_MODULE = "tests.settings";
30
31 meta = with lib; {
32 description = "Define placeholders where your blocks get rendered and append to those blocks";
33 homepage = "https://github.com/django-cms/django-sekizai";
34 license = licenses.bsd3;
35 maintainers = with maintainers; [ onny ];
36 };
37}