python3Packages.nix: override pkgs.nixl with the proper python interpreter

This commit is contained in:
Gaetan Lepage
2026-04-27 17:03:32 +00:00
parent 2760e2d419
commit 2b317803e9
2 changed files with 5 additions and 4 deletions
+2 -3
View File
@@ -9,7 +9,7 @@
meson,
ninja,
pkg-config,
python3,
python3Packages,
# buildInputs
abseil-cpp,
@@ -20,7 +20,6 @@
libfabric,
liburing,
numactl,
python3Packages,
taskflow,
ucx,
@@ -87,7 +86,7 @@ effectiveStdenv.mkDerivation (finalAttrs: {
meson
ninja
pkg-config
python3
python3Packages.python
]
++ lib.optionals cudaSupport [
cudaPackages.cuda_nvcc
+3 -1
View File
@@ -11136,7 +11136,9 @@ self: super: with self; {
nix-prefetch-github = callPackage ../development/python-modules/nix-prefetch-github { };
nixl = callPackage ../development/python-modules/nixl { inherit (pkgs) nixl; };
nixl = callPackage ../development/python-modules/nixl {
nixl = pkgs.nixl.override { python3Packages = self; };
};
nixpkgs-plugin-update = callPackage ../development/python-modules/nixpkgs-plugin-update { };