pysigma-backend-insightidr: use pythonRelaxDepsHook

Co-authored-by: Fabian Affolter <fabian@affolter-engineering.ch>
This commit is contained in:
Thiago Kenji Okada
2022-06-07 21:24:48 +01:00
co-authored by Fabian Affolter
parent 61223d51de
commit 0d71f8a2bc
@@ -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
];