about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-12-02 13:37:33 +1100
committerGitHub <noreply@github.com>2023-12-02 13:37:33 +1100
commit54ba768be8f6252b5caea6d4a9da2e97bc742bcd (patch)
tree076aa7fd5be670e4596334c94927eba618ab11e1 /pkgs/servers
parentbf02410994caea5dbc58c078bfe4d9021f55f9dd (diff)
parent018175ecab4555d7042f8d743445c797f4a27d07 (diff)
Merge pull request #271164 from helsinki-systems/feat/netbox-gunicorn
netbox: Inherit gunicorn from the package
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/web-apps/netbox/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/web-apps/netbox/generic.nix b/pkgs/servers/web-apps/netbox/generic.nix
index afd02d7985351..ec544b1e87724 100644
--- a/pkgs/servers/web-apps/netbox/generic.nix
+++ b/pkgs/servers/web-apps/netbox/generic.nix
@@ -1,6 +1,5 @@
 { lib
 , fetchFromGitHub
-, fetchpatch
 , python3
 , version
 , hash
@@ -94,6 +93,7 @@
       passthru = {
         # PYTHONPATH of all dependencies used by the package
         pythonPath = python3.pkgs.makePythonPath propagatedBuildInputs;
+        gunicorn = python3.pkgs.gunicorn;
         inherit tests;
       };