diff options
author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2023-07-28 17:49:13 +0200 |
---|---|---|
committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2023-07-28 17:49:13 +0200 |
commit | 83efccef831bfd2e383f4135e37c8d1268108c67 (patch) | |
tree | 35bb6d00cc71c99133d45b904d9064ce5a4ce45e /pkgs | |
parent | a0277221af97947ba47bac9f7508a94bd47894bf (diff) |
python310Packages.wagtail: 4.2.2 -> 5.0.2
https://github.com/wagtail/wagtail/blob/v5.0.2/CHANGELOG.txt
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/python-modules/wagtail/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/wagtail/default.nix b/pkgs/development/python-modules/wagtail/default.nix index c01464f27ceb7..54c30dabc7811 100644 --- a/pkgs/development/python-modules/wagtail/default.nix +++ b/pkgs/development/python-modules/wagtail/default.nix @@ -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 = [ |