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
commit f39c23adae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,10 +8,10 @@
, plugins ? ps: [] }: , plugins ? ps: [] }:
let let
py = python3.override { py = python3 // {
packageOverrides = self: super: { pkgs = python3.pkgs.overrideScope (self: super: {
django = super.django_4; django = super.django_4;
}; });
}; };
extraBuildInputs = plugins py.pkgs; extraBuildInputs = plugins py.pkgs;