Merge pull request #1124 from KiruyaMomochi/insights-netbox

This commit is contained in:
Phillip Cloud 2023-05-02 04:15:28 -07:00 committed by GitHub
commit fa63354bf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -7487,6 +7487,9 @@
"insegel": [
"setuptools"
],
"insights-core": [
"setuptools"
],
"installer": [
"flit-core",
"setuptools"

View file

@ -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 ];