diff --git a/overrides/build-systems.json b/overrides/build-systems.json index d72e2c2..eb65831 100644 --- a/overrides/build-systems.json +++ b/overrides/build-systems.json @@ -7487,6 +7487,9 @@ "insegel": [ "setuptools" ], + "insights-core": [ + "setuptools" + ], "installer": [ "flit-core", "setuptools" diff --git a/overrides/default.nix b/overrides/default.nix index 55fe588..aac35c8 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -1962,6 +1962,10 @@ lib.composeManyExtensions [ } ); + pynetbox = super.pynetbox.overridePythonAttrs (old: { + propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ]; + }); + pynput = super.pynput.overridePythonAttrs (old: { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.sphinx ];