From edadc930b441eb8e98ed720ec3ebaa2190d0fcf2 Mon Sep 17 00:00:00 2001 From: Lily Foster Date: Sun, 17 Sep 2023 10:34:41 -0400 Subject: [PATCH] python310Packages.fabric: 3.0.0 -> 3.2.2 Add missing decorator dep that was originally included in invoke, but with the 2.2.0 invoke update it stopped vendoring it. Fabric started requiring it as a separate dep with 3.1.0. --- pkgs/development/python-modules/fabric/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/fabric/default.nix b/pkgs/development/python-modules/fabric/default.nix index 80a4bd6674a2..e3da62493454 100644 --- a/pkgs/development/python-modules/fabric/default.nix +++ b/pkgs/development/python-modules/fabric/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , cryptography +, decorator , invoke , mock , paramiko @@ -11,11 +12,11 @@ buildPythonPackage rec { pname = "fabric"; - version = "3.0.0"; + version = "3.2.2"; src = fetchPypi { inherit pname version; - hash = "sha256-v+lgwa6QTnYkr51ArVubmVge2cT9CTScDQK3SG4dD4k="; + hash = "sha256-h4PKQuOwB28IsmkBqsa52bHxnEEAdOesz6uQLBhP9KM="; }; # only relevant to python < 3.4 @@ -24,7 +25,7 @@ buildPythonPackage rec { --replace ', "pathlib2"' ' ' ''; - propagatedBuildInputs = [ invoke paramiko cryptography ]; + propagatedBuildInputs = [ invoke paramiko cryptography decorator ]; nativeCheckInputs = [ pytestCheckHook pytest-relaxed mock ];