infra/hosts/build02/supervisor_test.nix
2024-07-24 10:27:26 +00:00

17 lines
382 B
Nix

{ pkgs, ... }:
pkgs.runCommand "nixpkgs-update-supervisor-test"
{
buildInputs = [ (pkgs.python3.withPackages (ps: [ ps.asyncinotify ])) ];
files = pkgs.lib.fileset.toSource {
root = ./.;
fileset = pkgs.lib.fileset.unions [
./supervisor.py
./supervisor_test.py
];
};
}
''
python3 $files/supervisor_test.py
touch $out
''