mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.paramiko: invoke is a required dependency (#452656)
This commit is contained in:
commit
b0f921c994
2 changed files with 12 additions and 15 deletions
|
|
@ -75,20 +75,17 @@ let
|
|||
glib
|
||||
];
|
||||
|
||||
pythonPath =
|
||||
with python3.pkgs;
|
||||
[
|
||||
b2sdk
|
||||
boto3
|
||||
idna
|
||||
pygobject3
|
||||
fasteners
|
||||
paramiko
|
||||
pexpect
|
||||
# Currently marked as broken.
|
||||
# pydrive2
|
||||
]
|
||||
++ paramiko.optional-dependencies.invoke;
|
||||
pythonPath = with python3.pkgs; [
|
||||
b2sdk
|
||||
boto3
|
||||
idna
|
||||
pygobject3
|
||||
fasteners
|
||||
paramiko
|
||||
pexpect
|
||||
# Currently marked as broken.
|
||||
# pydrive2
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
gnupg # Add 'gpg' to PATH.
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ buildPythonPackage rec {
|
|||
dependencies = [
|
||||
bcrypt
|
||||
cryptography
|
||||
invoke
|
||||
pynacl
|
||||
];
|
||||
|
||||
|
|
@ -39,7 +40,6 @@ buildPythonPackage rec {
|
|||
gssapi
|
||||
];
|
||||
ed25519 = [ ];
|
||||
invoke = [ invoke ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue