From 0e3a57553222bf44370595217eb961b4117fce2c Mon Sep 17 00:00:00 2001 From: "Markus S. Wamser" Date: Mon, 30 Jan 2023 11:15:58 +0100 Subject: [PATCH] bundlewrap: fix runtime deps (cherry picked from commit a06fdc80222787342da45c4431bb359e0e01ad1d) --- pkgs/development/python-modules/bundlewrap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/bundlewrap/default.nix b/pkgs/development/python-modules/bundlewrap/default.nix index e4eae0d3fe75f..b90de46dc8bbf 100644 --- a/pkgs/development/python-modules/bundlewrap/default.nix +++ b/pkgs/development/python-modules/bundlewrap/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ - cryptography jinja2 Mako passlib pyyaml requests tomlkit librouteros + setuptools cryptography jinja2 Mako passlib pyyaml requests tomlkit librouteros ] ++ lib.optional (pythonOlder "3.11") [ rtoml ]; pythonImportsCheck = [ "bundlewrap" ];