at 24.11-pre 243 B view raw
1{ runCommand 2, python3 3}: 4 5let 6 env = { nativeBuildInputs = [ python3 ]; }; 7in 8 9runCommand "nixos-test-driver-docstrings" env '' 10 mkdir $out 11 python3 ${./extract-docstrings.py} ${./test_driver/machine.py} \ 12 > $out/machine-methods.md 13''