Merge pull request #284093 from onny/django-crispy5
python3Packages.django-crispy-bootstrap5: init at 2023.10
This commit is contained in:
commit
a5ae45e45a
2 changed files with 44 additions and 0 deletions
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, django
|
||||
, setuptools
|
||||
, pytestCheckHook
|
||||
, pytest-django
|
||||
, django-crispy-forms
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-crispy-bootstrap5";
|
||||
version = "2023.10";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "django-crispy-forms";
|
||||
repo = "crispy-bootstrap5";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-AUMlLj3GmI+0vYw56Dw2+iF5s1l6GF+zV7PRD889ldg=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
django
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-django
|
||||
pytestCheckHook
|
||||
django-crispy-forms
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "crispy_bootstrap5" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bootstrap 5 template pack for django-crispy-forms";
|
||||
homepage = "https://github.com/django-crispy-forms/crispy-bootstrap5";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
|
@ -3050,6 +3050,8 @@ self: super: with self; {
|
|||
|
||||
django-crispy-bootstrap4 = callPackage ../development/python-modules/django-crispy-bootstrap4 { };
|
||||
|
||||
django-crispy-bootstrap5 = callPackage ../development/python-modules/django-crispy-bootstrap5 { };
|
||||
|
||||
django-crispy-forms = callPackage ../development/python-modules/django-crispy-forms { };
|
||||
|
||||
django-crontab = callPackage ../development/python-modules/django-crontab { };
|
||||
|
|
Loading…
Reference in a new issue