From b333c3f133cc275e85f8ab3fafe4223e00765b15 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 16 Jun 2023 10:58:17 +0200 Subject: [PATCH] python311Packages.ciscoconfparse: relax loguru constraint --- .../development/python-modules/ciscoconfparse/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ciscoconfparse/default.nix b/pkgs/development/python-modules/ciscoconfparse/default.nix index 83035774d05a..edf15661dfec 100644 --- a/pkgs/development/python-modules/ciscoconfparse/default.nix +++ b/pkgs/development/python-modules/ciscoconfparse/default.nix @@ -1,13 +1,14 @@ { lib , buildPythonPackage -, dnspython , deprecat +, dnspython , fetchFromGitHub , loguru , passlib , poetry-core , pytestCheckHook , pythonOlder +, pythonRelaxDepsHook , toml }: @@ -25,12 +26,17 @@ buildPythonPackage rec { hash = "sha256-vL/CQdYcOP356EyRToviWylP1EBtxmeov6qkhfQNZ2Y="; }; + pythonRelaxDeps = [ + "loguru" + ]; + postPatch = '' patchShebangs tests ''; nativeBuildInputs = [ poetry-core + pythonRelaxDepsHook ]; propagatedBuildInputs = [