summary refs log tree commit diff
path: root/pkgs/development/python-modules/pelican/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pelican/default.nix')
-rw-r--r--pkgs/development/python-modules/pelican/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pelican/default.nix b/pkgs/development/python-modules/pelican/default.nix
index ea582afd96f..e48623ef5b3 100644
--- a/pkgs/development/python-modules/pelican/default.nix
+++ b/pkgs/development/python-modules/pelican/default.nix
@@ -45,6 +45,16 @@ buildPythonPackage rec {
 
   LC_ALL="en_US.UTF-8";
 
+
+  # We only want to patch shebangs in /bin, and not those
+  # of the project scripts that are created by Pelican.
+  # See https://github.com/NixOS/nixpkgs/issues/30116
+  dontPatchShebangs = true;
+
+  postFixup = ''
+    patchShebangs $out/bin
+  '';
+
   meta = with stdenv.lib; {
     description = "A tool to generate a static blog from reStructuredText or Markdown input files";
     homepage = http://getpelican.com/;