diff --git a/checks/lib/container-driver/package.nix b/checks/lib/container-driver/package.nix index bac4fa93b..872ec1545 100644 --- a/checks/lib/container-driver/package.nix +++ b/checks/lib/container-driver/package.nix @@ -1,8 +1,8 @@ -{ extraPythonPackages, buildPythonApplication, self, setuptools, util-linux, systemd }: +{ extraPythonPackages, python3Packages, buildPythonApplication, setuptools, util-linux, systemd }: buildPythonApplication { pname = "test-driver"; version = "0.0.1"; - propagatedBuildInputs = [ util-linux systemd ] ++ extraPythonPackages self; + propagatedBuildInputs = [ util-linux systemd ] ++ extraPythonPackages python3Packages; nativeBuildInputs = [ setuptools ]; format = "pyproject"; src = ./.;