Files
nixpkgs/nixos/lib/test-driver/shell.nix
Victor Engmark 0474cd659a nixos/test-driver: Use Python's callPackage
The original code meant `nix-shell` didn't pass the relevant arguments to `default.nix`:

> error: evaluation aborted with the following error message:
> 'lib.customisation.callPackageWith: Function called without required
> argument "buildPythonApplication" at
> […]/nixos/lib/test-driver/default.nix:4'

Co-Authored-By: Jacek Galowicz <jacek@galowicz.de>
2026-02-08 11:16:48 +01:00

5 lines
86 B
Nix

{
pkgs ? import ../../.. { },
}:
pkgs.python3Packages.callPackage ./default.nix { }