Skip to content

Commit

Permalink
Merge pull request #284093 from onny/django-crispy5
Browse files Browse the repository at this point in the history
python3Packages.django-crispy-bootstrap5: init at 2023.10
  • Loading branch information
happysalada authored Jan 31, 2024
2 parents 3dd36d2 + 4e316b8 commit a5ae45e
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit a5ae45e

Please sign in to comment.