baserow: disable check for azure Python packages I don't want anyway

This commit is contained in:
Luke Granger-Brown 2023-02-12 17:03:55 +00:00
parent e65e390937
commit 83e37e8ad0

View file

@ -96,4 +96,11 @@ self: super: {
doCheck = false; doCheck = false;
}); });
azure-core = super.azure-core.overridePythonAttrs (_: {
doCheck = false;
});
azure-servicebus = super.azure-servicebus.overridePythonAttrs (_: {
doCheck = false;
});
} }