python310Packages.django-sekizai: init at 4.1.0

This commit is contained in:
Jonas Heinrich
2023-07-01 18:49:44 +02:00
parent a61134c74c
commit 43b5e1479b
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{ lib
, fetchPypi
, buildPythonPackage
, django_classytags
, pytestCheckHook
, pytest-django
}:
buildPythonPackage rec {
pname = "django-sekizai";
version = "4.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Kso2y64LXAzv7ZVlQW7EQjNXZ/sxRb/xHlhiL8ZTza0=";
};
propagatedBuildInputs = [
django_classytags
];
checkInputs = [
pytestCheckHook
pytest-django
];
pythonImportsCheck = [ "sekizai" ];
DJANGO_SETTINGS_MODULE = "tests.settings";
meta = with lib; {
description = "Define placeholders where your blocks get rendered and append to those blocks";
homepage = "https://github.com/django-cms/django-sekizai";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}
+2
View File
@@ -2875,6 +2875,8 @@ self: super: with self; {
django-reversion = callPackage ../development/python-modules/django-reversion { };
django-sekizai = callPackage ../development/python-modules/django-sekizai { };
django-sesame = callPackage ../development/python-modules/django-sesame { };
django_silk = callPackage ../development/python-modules/django_silk { };