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.
This commit is contained in:
Lily Foster 2023-09-17 10:34:41 -04:00
parent ace5093e36
commit edadc930b4
No known key found for this signature in database
GPG key ID: 49340081E484C893

View file

@ -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 ];