lol

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.

+4 -3
+4 -3
pkgs/development/python-modules/fabric/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , cryptography 5 + , decorator 5 6 , invoke 6 7 , mock 7 8 , paramiko ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "fabric"; 14 - version = "3.0.0"; 15 + version = "3.2.2"; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - hash = "sha256-v+lgwa6QTnYkr51ArVubmVge2cT9CTScDQK3SG4dD4k="; 19 + hash = "sha256-h4PKQuOwB28IsmkBqsa52bHxnEEAdOesz6uQLBhP9KM="; 19 20 }; 20 21 21 22 # only relevant to python < 3.4 ··· 24 25 --replace ', "pathlib2"' ' ' 25 26 ''; 26 27 27 - propagatedBuildInputs = [ invoke paramiko cryptography ]; 28 + propagatedBuildInputs = [ invoke paramiko cryptography decorator ]; 28 29 29 30 nativeCheckInputs = [ pytestCheckHook pytest-relaxed mock ]; 30 31