summary refs log tree commit diff
path: root/nixos/lib/test-driver/nixos-test-driver-docstrings.nix
blob: a3ef50e4e8205021c4bac7fddde0429c28249968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ runCommand
, python3
}:

let
  env = { nativeBuildInputs = [ python3 ]; };
in

runCommand "nixos-test-driver-docstrings" env ''
  mkdir $out
  python3 ${./extract-docstrings.py} ${./test_driver/machine.py} \
    > $out/machine-methods.md
''