1
Fork 0

django5: make it quicker to build

main
Motiejus Jakštys 2024-02-25 22:52:57 +02:00
parent a4f385c2f7
commit 31ff6d5606
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
_: prev: {
python3 = prev.python3.override {
packageOverrides = _: python-prev: {
django = python-prev.django_5;
# when used from a different flake (motiejus/config) on x86_64-linux
# (vno1-oh2) when cross-compiling to aarch64-linux build (fra1-a),
# it would not use cache. I wasn't sure at the time if the package
# was cached altogether. But disabling tests made it build reasonably
# quickly when cross-compiling too.
django = python-prev.django_5.overridePythonAttrs {doCheck = false;};
};
};
}