depot/third_party/nixpkgs/pkgs/development/python-modules/django-sekizai/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
788 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
django-classy-tags,
pytestCheckHook,
pytest-django,
}:
buildPythonPackage rec {
pname = "django-sekizai";
version = "4.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Kso2y64LXAzv7ZVlQW7EQjNXZ/sxRb/xHlhiL8ZTza0=";
};
propagatedBuildInputs = [ django-classy-tags ];
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 ];
};
}