about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2023-11-30 11:51:37 +0100
committerJanne Heß <janne@hess.ooo>2023-11-30 11:51:37 +0100
commit018175ecab4555d7042f8d743445c797f4a27d07 (patch)
treeafd33b40b87fccd60ec7f6c905499c401ca89109 /pkgs/servers/web-apps
parent0d44b5b7733e35fe17b34921c611c21f805068a9 (diff)
downloadnixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar.gz
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar.bz2
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar.lz
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar.xz
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.tar.zst
nixlib-018175ecab4555d7042f8d743445c797f4a27d07.zip
netbox: Inherit gunicorn from the package
I was using a 23.11 package on a NixOS 23.05 system and this caused the
python that was used in gunicorn to differ from the python the postgres
lib was linked against.
Diffstat (limited to 'pkgs/servers/web-apps')
-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 afd02d798535..ec544b1e8772 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;
       };