repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
nixos
/
lib
/
test-driver
/
nixos-test-driver-docstrings.nix
blob
a3ef50e4e8205021c4bac7fddde0429c28249968
1
{ runCommand
2
, python3
3
}:
4
5
let
6
env = { nativeBuildInputs = [ python3 ]; };
7
in
8
9
runCommand "nixos-test-driver-docstrings" env ''
10
mkdir $out
11
python3 ${./extract-docstrings.py} ${./test_driver/machine.py} \
12
> $out/machine-methods.md
13
''