From fa4178ac6b68d7d63a700001e55301e32b4c2603 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 10 Dec 2024 09:42:41 +0100 Subject: [PATCH] fix(gramine): add build system python packages to let gramine find the correct python libdir path Signed-off-by: Harald Hoyer --- packages/gramine/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/gramine/default.nix b/packages/gramine/default.nix index 97224a5..33a91cc 100644 --- a/packages/gramine/default.nix +++ b/packages/gramine/default.nix @@ -17,6 +17,7 @@ , patchelf , protobufc , which +, python3Packages }: let python = pkgs.python3; @@ -108,6 +109,12 @@ python.pkgs.buildPythonPackage { perl ]; + + build-system = with python3Packages; [ + setuptools + distutils + ]; + buildInputs = [ protobufc.dev protobufc.lib