Unverified Commit f39c23ad authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #223268 from stuebinm/netbox-composible-packageOverrides

netbox: workaround to allow composible python packageOverrides
parents 482c7352 230d5060
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@
, plugins ? ps: [] }:

let
  py = python3.override {
    packageOverrides = self: super: {
  py = python3 // {
    pkgs = python3.pkgs.overrideScope (self: super: {
      django = super.django_4;
    };
    });
  };

  extraBuildInputs = plugins py.pkgs;