From 0d71f8a2bc0b47189e348e68245334971ba0d05f Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Tue, 7 Jun 2022 15:54:55 +0100 Subject: [PATCH] pysigma-backend-insightidr: use pythonRelaxDepsHook Co-authored-by: Fabian Affolter --- .../python-modules/pysigma-backend-insightidr/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix b/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix index 46346f466b20..583abc11f6dc 100644 --- a/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix +++ b/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix @@ -5,6 +5,7 @@ , pysigma , pytestCheckHook , pythonOlder +, pythonRelaxDepsHook }: buildPythonPackage rec { @@ -23,12 +24,17 @@ buildPythonPackage rec { nativeBuildInputs = [ poetry-core + pythonRelaxDepsHook ]; propagatedBuildInputs = [ pysigma ]; + pythonRelaxDeps = [ + "pysigma" + ]; + checkInputs = [ pytestCheckHook ];