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

netbox: workaround to allow composible python packageOverrides
This commit is contained in:
Ryan Lahfa
2023-03-27 22:06:39 +02:00
committed by GitHub
+3 -3
View File
@@ -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;