fix(python): disable python metadata check for cheetah3 to fix sabnzbd build

This commit is contained in:
Noah Masur
2026-07-28 11:34:39 -04:00
parent 1960d84e7a
commit e107431fa9
2 changed files with 14 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
_inputs: _final: prev: {
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(_pyfinal: pyprev: {
cheetah3 = pyprev.cheetah3.overridePythonAttrs (_old: {
dontCheckPythonMetadata = true;
});
})
];
}