python310Packages.django-bootstrap4: init at 3.0.1

This commit is contained in:
Martin Weinelt 2023-05-10 18:36:16 +02:00
parent f4aa6afa5f
commit fa814e86a3
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,57 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# dependencies
, beautifulsoup4
# tests
, django
, python
}:
buildPythonPackage rec {
pname = "django-bootstrap4";
version = "3.0.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "zostera";
repo = "django-bootstrap4";
rev = "v${version}";
hash = "sha256-5t6b/1921AMDqoYg7XC2peGxOBFE8XlvgGjHnTlQa4c=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
beautifulsoup4
];
pythonImportsCheck = [
"bootstrap4"
];
nativeCheckInputs = [
(django.override { withGdal = true; })
];
checkPhase = ''
runHook preCheck
${python.interpreter} manage.py test -v1 --noinput
runHook postCheck
'';
meta = with lib; {
description = "Bootstrap 4 integration with Django";
homepage = "https://github.com/zostera/django-bootstrap4";
changelog = "https://github.com/zostera/django-bootstrap4/blob/${src.rev}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -2602,6 +2602,8 @@ self: super: with self; {
django-bootstrap3 = callPackage ../development/python-modules/django-bootstrap3 { };
django-bootstrap4 = callPackage ../development/python-modules/django-bootstrap4 { };
django-cache-url = callPackage ../development/python-modules/django-cache-url { };
django-cacheops = callPackage ../development/python-modules/django-cacheops { };