about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fabric
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-09-17 10:34:41 -0400
committerLily Foster <lily@lily.flowers>2023-09-17 10:34:41 -0400
commitedadc930b441eb8e98ed720ec3ebaa2190d0fcf2 (patch)
treea8c8197b872110df5062f62c7283a2d9a9862ae6 /pkgs/development/python-modules/fabric
parentace5093e36ab1e95cb9463863491bee90d5a4183 (diff)
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.
Diffstat (limited to 'pkgs/development/python-modules/fabric')
-rw-r--r--pkgs/development/python-modules/fabric/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/fabric/default.nix b/pkgs/development/python-modules/fabric/default.nix
index 80a4bd6674a23..e3da624934542 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 ];