adding python overlay because stupid
This commit is contained in:
parent
41b97ef1d1
commit
3dc78b4d16
13
python312overlay.nix
Normal file
13
python312overlay.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
self: super: {
|
||||
python312 = let
|
||||
packageOverrides = python-self: python-super: {
|
||||
openai = python-super.openai.overridePythonAttrs {
|
||||
doCheck = false;
|
||||
doInstallCheck = false;
|
||||
pytestCheckPhase = false;
|
||||
disabledTests = [
|
||||
"async"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue