diff --git a/nix/pkgs/django-tailwind.nix b/nix/pkgs/django-tailwind.nix index 160fe8ecb5..b4472f2ace 100644 --- a/nix/pkgs/django-tailwind.nix +++ b/nix/pkgs/django-tailwind.nix @@ -9,6 +9,11 @@ buildPythonPackage rec { sha256 = "sha256:187alssasfmnbq1rdhgs8np1j494mcgndxx7cw3lyyzqmkrsn0c2"; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace 'cookiecutter = "^1.7.2"' 'cookiecutter = ">=1.7.2"' + ''; + nativeBuildInputs = [ poetry ]; propagatedBuildInputs = [ django cookiecutter ]; format = "pyproject";