mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
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>
5 lines
86 B
Nix
5 lines
86 B
Nix
{
|
|
pkgs ? import ../../.. { },
|
|
}:
|
|
pkgs.python3Packages.callPackage ./default.nix { }
|