Merge pull request #255668 from lilyinstarlight/fix/fabric-with-new-invoke

python310Packages.fabric: 3.0.0 -> 3.2.2
This commit is contained in:
Martin Weinelt 2023-09-17 17:11:53 +02:00 committed by GitHub
commit d9ab40ca7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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