From 18b6f21f1203384697e032add53d7f174920e912 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Mon, 3 Mar 2025 12:58:02 +0100 Subject: [PATCH] Add TODO about buildPythonPackage to NixOS overlay --- nixos-overlay.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos-overlay.nix b/nixos-overlay.nix index 818af86..2cfe91a 100644 --- a/nixos-overlay.nix +++ b/nixos-overlay.nix @@ -31,6 +31,15 @@ } ; } ; + + # TODO: Use the following template once the custom Python packages have been converted to use `buildPythonPackage` + # + # python311 = super . python311 . override { + # packageOverrides = python-self : python-super : { + # package-name = super . callPackage ( import ./package-file.nix ) {} ; + # } ; + # } ; + } ) ] ; } ;