[Backport release-26.05] pdfding: fix build (#543805)

This commit is contained in:
Ivan Mincik
2026-07-21 09:06:03 +00:00
committed by GitHub

View File

@@ -24,9 +24,10 @@ python.pkgs.buildPythonPackage (finalAttrs: {
strictDeps = true;
__structuredAttrs = true;
# remove supervisor from dependencies
# remove supervisor from dependencies and fix version
postPatch = ''
sed -i 's/supervisor.*$//' pyproject.toml
sed -i 's/^version = .*$/version = "${finalAttrs.version}"/' pyproject.toml
'';
dependencies =
@@ -132,6 +133,7 @@ python.pkgs.buildPythonPackage (finalAttrs: {
'';
pythonRelaxDeps = [
"django"
"django-allauth"
"gunicorn"
"huey"