Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-sekizai / default.nix
blob5c040ee026bac89e2f74d8db1434073f588daa08
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , django-classy-tags
5 , pytestCheckHook
6 , pytest-django
7 }:
9 buildPythonPackage rec {
10   pname = "django-sekizai";
11   version = "4.1.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-Kso2y64LXAzv7ZVlQW7EQjNXZ/sxRb/xHlhiL8ZTza0=";
17   };
19   propagatedBuildInputs = [
20     django-classy-tags
21   ];
23   checkInputs = [
24     pytestCheckHook
25     pytest-django
26   ];
28   pythonImportsCheck = [ "sekizai" ];
30   DJANGO_SETTINGS_MODULE = "tests.settings";
32   meta = with lib; {
33     description = "Define placeholders where your blocks get rendered and append to those blocks";
34     homepage = "https://github.com/django-cms/django-sekizai";
35     license = licenses.bsd3;
36     maintainers = with maintainers; [ onny ];
37   };