bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
anyascii,
|
|
beautifulsoup4,
|
|
buildPythonPackage,
|
|
callPackage,
|
|
django,
|
|
django-filter,
|
|
django-modelcluster,
|
|
django-taggit,
|
|
django-treebeard,
|
|
djangorestframework,
|
|
draftjs-exporter,
|
|
fetchPypi,
|
|
html5lib,
|
|
l18n,
|
|
laces,
|
|
openpyxl,
|
|
permissionedforms,
|
|
pillow,
|
|
pythonOlder,
|
|
requests,
|
|
telepath,
|
|
willow,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wagtail";
|
|
version = "6.0.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-58/DwPU/swLxeY8OAqesYHirAusOhwPA9xzL0/GOOG8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "django-filter>=23.3,<24" "django-filter>=23.3,<24.3"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
anyascii
|
|
beautifulsoup4
|
|
django
|
|
django-treebeard
|
|
django-filter
|
|
django-modelcluster
|
|
django-taggit
|
|
djangorestframework
|
|
draftjs-exporter
|
|
html5lib
|
|
l18n
|
|
laces
|
|
openpyxl
|
|
permissionedforms
|
|
pillow
|
|
requests
|
|
telepath
|
|
willow
|
|
] ++ willow.optional-dependencies.heif;
|
|
|
|
# Tests are in separate derivation because they require a package that depends
|
|
# on wagtail (wagtail-factories)
|
|
doCheck = false;
|
|
|
|
passthru.tests.wagtail = callPackage ./tests.nix { };
|
|
|
|
pythonImportsCheck = [ "wagtail" ];
|
|
|
|
meta = with lib; {
|
|
description = "Django content management system focused on flexibility and user experience";
|
|
mainProgram = "wagtail";
|
|
homepage = "https://github.com/wagtail/wagtail";
|
|
changelog = "https://github.com/wagtail/wagtail/blob/v${version}/CHANGELOG.txt";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ sephi ];
|
|
};
|
|
}
|