python310Packages.wagtail: 4.2.2 -> 5.0.2

https://github.com/wagtail/wagtail/blob/v5.0.2/CHANGELOG.txt
This commit is contained in:
Martin Weinelt 2023-07-28 17:49:13 +02:00
parent a0277221af
commit 83efccef83
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -24,19 +24,20 @@
buildPythonPackage rec {
pname = "wagtail";
version = "4.2.2";
version = "5.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-s89gs3H//Dc3k6BLZUC4APyDgiWY9LetWAkI+kXQTf8=";
hash = "sha256-3r0h34el2zRF1l/94S7xTjBqJPWtSQFQvtVW8Mjq0rs=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "beautifulsoup4>=4.8,<4.12" "beautifulsoup4>=4.8"
--replace "beautifulsoup4>=4.8,<4.12" "beautifulsoup4>=4.8" \
--replace "Pillow>=4.0.0,<10.0.0" "Pillow>=9.1.0,<11.0.0"
'';
propagatedBuildInputs = [