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