mirror of
https://github.com/nmasur/dotfiles
synced 2026-07-29 15:18:34 +00:00
10 lines
240 B
Nix
10 lines
240 B
Nix
_inputs: _final: prev: {
|
|
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
|
|
(_pyfinal: pyprev: {
|
|
cheetah3 = pyprev.cheetah3.overridePythonAttrs (_old: {
|
|
dontCheckPythonMetadata = true;
|
|
});
|
|
})
|
|
];
|
|
}
|