From 527db2dbf004ee0a61f008e8299e308ccf4c2ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 3 Nov 2023 14:01:43 +0100 Subject: [PATCH] container-driver: fix eval --- checks/lib/container-driver/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = ./.;