From 8f48f18f4a07767b65466ec3c4198a360fc39516 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Mon, 3 Mar 2025 13:24:46 +0100 Subject: [PATCH] Add dependency on Django to python-bw-file-resubmit --- python3.11-bw-file-resubmit.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python3.11-bw-file-resubmit.nix b/python3.11-bw-file-resubmit.nix index 028708a..e6626fc 100644 --- a/python3.11-bw-file-resubmit.nix +++ b/python3.11-bw-file-resubmit.nix @@ -1,5 +1,6 @@ { fetchFromGitHub , + pkgs , stdenv , } : @@ -24,6 +25,7 @@ mkDerivation { runHook preInstall mkdir -p $out/lib/python3.11/site-packages + ln -s ${ pkgs . python311Packages . django }/lib/python3.11/site-packages/* $out/lib/python3.11/site-packages/ cp -r $src/src/file_resubmit $out/lib/python3.11/site-packages/ runHook postInstall