adding python overlay because stupid

This commit is contained in:
Chris Cochrun 2024-12-18 11:45:47 -06:00
parent 41b97ef1d1
commit 3dc78b4d16

13
python312overlay.nix Normal file
View 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"
];
};
};
}