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