overlay: keep python dep overlay as an example

This commit is contained in:
Aaron Bieber 2022-10-01 07:18:49 -06:00
parent bd15e1fad0
commit 221a2662f5
No known key found for this signature in database

View File

@ -69,3 +69,15 @@
] else
[ ];
}
# Example Python dep overlay
# (self: super: {
# python3 = super.python3.override {
# packageOverrides = python-self: python-super: {
# canonicaljson = python-super.canonicaljson.overrideAttrs (oldAttrs: {
# nativeBuildInputs = [ python-super.setuptools ];
# });
# };
# };
# })