mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 08:37:40 +00:00
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:
parent
ace5093e36
commit
edadc930b4
@ -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 ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user