add container test driver

This commit is contained in:
Jörg Thalheim
2023-10-14 15:54:56 +02:00
committed by Mic92
parent f7031bdbdb
commit 5753f32930
9 changed files with 557 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ extraPythonPackages, buildPythonApplication, self, setuptools, util-linux, systemd }:
buildPythonApplication {
pname = "test-driver";
version = "0.0.1";
propagatedBuildInputs = [ util-linux systemd ] ++ extraPythonPackages self;
nativeBuildInputs = [ setuptools ];
format = "pyproject";
src = ./.;
}