Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 37 lines 763 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, django-classy-tags 5, pytestCheckHook 6, pytest-django 7}: 8 9buildPythonPackage rec { 10 pname = "django-sekizai"; 11 version = "4.1.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-Kso2y64LXAzv7ZVlQW7EQjNXZ/sxRb/xHlhiL8ZTza0="; 16 }; 17 18 propagatedBuildInputs = [ 19 django-classy-tags 20 ]; 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}